Shiva Bhusal
Shiva's Blog

Follow

Shiva's Blog

Follow

Nepal Telecom Mail Settings | Sending emails from ISP

Shiva Bhusal's photo
Shiva Bhusal
·Sep 28, 2014·

2 min read

Play this article

Quick Configurations:

Presented below are the main configuration parameters for quick reference:

Quick Configurations:

Presented below are the main configuration parameters for quick reference:
Incoming Mail Servier Type
:
POP
Incoming Mail Server Address
:
Outgoing Mail Server Address
:
Incoming Mail Server Port
:
110
Outgoing Mail Server Port
:
25
Primary DNS
:
202.70.64.5
Gateway IP Address
:
202.70.64.10
Secondary DNS
:
202.70.64.15
Proxy Server Name
:
Proxy Server IP Address
:
202.70.64.15
Proxy Server Port
:
3128
Alternate Dial-in Numbers (except 15000)
:
15050

Rails App email settings

# config/initializers/smtp_settings.rb

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
  :address              => "smtp.ntc.net.np",
  :port                 => "25",
  :authentication       => "plain",
}
 
Share this