Setting mail on port 587

Is there a way to setup the mail server to listen on this port in 10.4.11?

Isn't 587 already enabled by default on 10.4.11? (it's been a while…)
If it isn't then just uncomment the submission line in /etc/postfix/master.cf
#submission inet n - n - - smtpd
You may or may not need the following options lines depending on how you want to configure your server (e.g. require authentication, TLS, etc.)

Similar Messages

  • RVS 4000 on Port 587

    hi
    I just bought RVS 4000 a week ago. My previous router can send email through port 587,
    Ever since i bought RVS 4000, it stop sending emails. I opened port 25 and I have tried all my best to do port forwarding to port 587 but still it cannot send email.
    My ISP is using port 587.
    Please help help me on this. What should i do to be able to send email on port 587?

    Hi Lui,
    When you say send mail on port 587, are you referring to sending mail from the LAN to the WAN on port 587?  Or a port forward translation from 25 on the WAN to 587 on the LAN?
    On the RVS4000, you can perform port translation by going to the Firewall Page, then Single Port Forwarding.  Create an application name (text based, will not affect config) and then you can choose an external port to internal port.  Lastly point to the internal IP address of the mail server.
    If you are referring to sending mail on port 587, the router is by default going to allow all outbound traffic out and will not block or filter ports.
    Please let me know if this resolves your issue.
    Thanks!
    Dave

  • Cannot send email via Hotmail through port 587 with Secure Connection (SSL) set

    Something is blocking my attempts to send email (with Outlook Express) via my hotmail.com account. The error I receive is as follows:
    Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Account: 'Hotmail', Server: 'smtp.live.com', Protocol: SMTP, Port: 587, Secure(SSL): Yes, Error Number: 0x800CCC0F
    When Hotmail.com first changed over to a POP3 server (Sept 2009), I could send emails through them using port 587, which they require. But then something happened, with no changes on my part, to disable my ability to send.
    I have checked and rechecked my Outlook Express account settings. I can send email through another third-party mail account (at 1&1 Internet.com) using port 587, which does not require setting SSL to yes. I can also ping the Hotmail SMTP server via port 587 and receive a response from it.
    I connect to Verizon DSL via a Westell 327W modem/router. Clearly it is not blocking port 587 without SSL. Does it have the capability to block SSL traffic? Or is the Verizon server the culprit, not allowing emails to be sent via Hotmail.com?
    Two different computers on my LAN have the same problem sending emails via Hotmail.com. I have tried everything the Hotmail people have suggested; at this point they think it is an ISP problem, hence this post. This problem doesn't make sense to me and is driving me crazy. Can anyone help me with this?
    Thanks.

    You can still have your reply address set to your hotmail address. And you don't have to really remember to do anything. Configure your client for the HOTMAIL account with Verizon's outgoing server. It will automatically send via Verizon. You don't reveal your verizon.net address, you are just using their server to transmit.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Setting the smpt port out wil .mac mail

    Maybe I'm not getting this, but I want to set the send mail port on my iPhone that is using my .mac account. I looked at the instructions for doing this and go to Setting -> Mail, but I cannot find where to put in the smtp.mac.com:258 or whatever port I'm using. Can some one walk me through where I put this in?
    Or do I set up the .mac mail as an "Other" mail account?

    Actually, I do need to set my smtp, as my ISP provider will only allow mail out on a specific port, and the .mac preference does not include that port.

  • Leopoard / Mail 3.1 and port 587

    Hello,
    I am starting with leopard and mail 3.1.
    I have to change the port to go to port 587.
    I canot find where to do it.
    Help please.

    Hello and thank you.
    However, I knew how to do it in previous release of Mail.
    As you said : there was a place called "réglages des serveurs" (tune the s"erveurs")
    Mail, preferences,account, advanced ...... but the "reglages des serveurs " does not exist anymore
    in Mail in the new release Mail 3.1
    Therefore I dont know how to change (SMTP) PORT from 25 to 587.

  • Mail 3.6 - How to set two SSL ports?

    I am running Mail 3.6. My ISP (AT&T) requires setting one SSL port for incoming and a different SSL port for outgoing mail. I have searched everywhere and tried the Mail Assistant but I cannot find a way to set up an account with two different ports, only one. Does anyone know a way to correct this? Thanks.

    Incoming and outgoing email always use different ports. They are separate operations, different protocols, and generally different servers. in *Mail Help*, follow the instructions under "Setting up accounts". Step 3 is for the incoming server, step 4 is for the outgoing server.

  • Sending email using IMAP through SMTP Port 587

    Hi,
    I have been sending Mail Merged email to people in organizations that I am active in, using IMAP embedded in StarOffice 5.2 (on Windows 98 Second Edition). This worked fine until a few weeks ago when I received an error message stating that AOL, as part of their anti-spam efforts, was no longer accepting third-party emails on default port 25. All third-party email must now use port 587. I looked in the IMAP dialog and in the Tools -> Options dialog, but did not see any place to change the SMTP port. The AOL error message information page had instructions for changing the port in other applications (Outlook, Eudora, etc.), but not for StarOffice. So, I have some questions:
    1.Is it possible to change the port in StarOffice 5.2?
    2.If not, how does StarOffice 8 send Mail Merged email? Does it use IMAP, and if so, can the port be changed?
    3.Also, I like the integrated configuration in StarOffice 5.2, where database fields can be directly accessed in the Insert -> Fields -> Other dialog. In looking at the Mail Merge section in "SO8_What's New.pdf", it appears that Mail Merge in StarOffice 8 is restricted to predefined fields. Could I still access fields from my existing databases?
    These is a lot of questions, but right now I am blocked from sending Mail Merged emails which is imparing communications with volunteers who are running educational programs. I appreciate any and all help that anyone can provide.

    Please try this out!!!!!!!!!
    You can send emails using Outlook also. You can send email over Microsoft Exchange with this object (or another email server, using IMAP/POP).
    Sub SendMailOutlook(aTo, Subject, TextBody, aFrom)
    'Create an Outlook object
    Dim Outlook 'As New Outlook.Application
    Set Outlook = CreateObject("Outlook.Application")
    'Create e new message
    Dim Message 'As Outlook.MailItem
    Set Message = Outlook.CreateItem(olMailItem)
    With Message
    'You can display the message To debug And see state
    '.Display
    .Subject = Subject
    .Body = TextBody
    'Set destination email address
    .Recipients.Add (aTo)
    'Set sender address If specified.
    Const olOriginator = 0
    If Len(aFrom) > 0 Then .Recipients.Add(aFrom).Type = olOriginator
    'Send the message
    .Send
    End With
    End Sub

  • Setting mail with Cox (or other services with different servers for pop and smtp)

    My Cox mail account uses different servers for pop and smtp (my personal ISP 1&1 does too).
    The mail applet on my Blackberry Curve 8330 with Verizon does not allow to define different servers for pop and smtp, and further, for SSL smtp mail, the port is fixed at 995 and cannot be changed, while Cox (and 1&1) want to use 587 or something like that.
    As a result, I can only receive mail with these services.
    I also have yahoo mail, which works fine, so I can send mail with it and it is not a life-and-death situation, but I would like to be able to just reply to email sent to my Cox address.
    I called Verizon and they said BlackBerry provides the mail access through their servers and the applet, so there is nothing they can do.
    Is there a way to set it such that I can not only receive but also send mail through either of these services?
    Thanks in advance,
    Didier
    PS: Other than that, the Curve on Verizon rocks!!! so much better down here than AT&T it's not even funny.

    OK, thank you for the input.
    The problem I have with this solution is like the one I have now using yahoo.
    There are 2 problems:
    1) mailing lists want the mail to come from the account that is subscribed, so if the cox account is subscribed, I can't contribute from the blackberry, and if the blackberry account is subscribed, I don't get my mail in Outlook. Neither is good for me.
    2) people who send me mail to the Cox account and get replies from me from the blackberry continue responding to the account that can send from the blackberry (not Cox), and from that point on I do not have that mail on the computer.
    The issue of having two copies is no big deal, I just delete the mail I do not need. I would rather have two than none.
    Really, Blackberry should modify the email service so that they directly support mail systems like those of Cox and 1&1. I am sure there are others. They should also allow the use of another port for SSL than 995. I have not seen anyone using 995 for SSL.
    Until recently, I had a BB provided by my employer, and we had a BES, and that worked really well. I would like to emulate as much of that functionality as possible without having to pay somebody another $10 or $20 a month just for the priviledge of having an account on a private BES server.
    Anyway, thanks for the exchange and suggestions.
    Didier

  • Come on, honestly: ESMTP (port 587) - possible or not?

    Hi all,
    a special question to the ones invoked into JavaMail:
    Is a connection to a ESMTP-server (port 587) possible with JavaMail? (And if yes - how?)
    Certainly this is about sending mails via Gmail. And yes, I read http://java.sun.com/products/javamail/FAQ.html#gmail - and tested the demo-program. It works, but it turned out to use port 465. The problem is that Google advises its users to use port 587 und if you offer a webmail-client (which allows people to set a custom SMTP-port), these users will choose 587.
    I read tons of howtos und code-examples and tried out dozens combinations of properties-settings and SMTPTransport-Connects, but I didn't succeed to send a message to Gmails server on port 587. The "best" I got was a "javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?". Most of the time JavaMail tried to fallback and failured on port 25.
    I feel like "shetline2" on this thread:
    http://forum.java.sun.com/thread.jspa?forumID=43&threadID=706550
    He faced exactly the same experiences like me. Unfortunately this thread ended without a solution.
    And one more bonus-question:
    Is it possible to determine "on-the-fly" which kind of "secure connection" the server expects? In my Thunderbird I found "TLS - if possible"!??
    Thanks a lot for all hints and stuff!
    Best regards
    Stephan
    This is to show that I wasn't to lazy to try out (all the commented lines were one      unsuccessful shot):
    public static Session assembleJavaxMailSession(SmtpConnectionBean
    smtpConnection) {
    // Welches Protokoll?
    String proto = smtpConnection.isSslConnection() ?
    MailTransportProtocolEnum.SMTP_SSL.getProtocolId() :
    MailTransportProtocolEnum.SMTP.getProtocolId();
    // Properties holen und Werte aus der Bean setzen
    Properties props = getProperties();
    // props.setProperty("mail.transport.protocol", proto);
    // props.setProperty("mail." + proto + ".host", smtpConnection.getSmtpHost());
    // props.setProperty("mail." + proto + ".port", smtpConnection.getSmtpPort());
    // props.setProperty("mail." + proto + ".quitwait", "false");
    // // Bei SSL noch ein paar mehr Properties...
    // if(smtpConnection.isSslConnection()) {
    // props.setProperty("mail.smtps.socketFactory.class",
    // "javax.net.ssl.SSLSocketFactory");
    // props.setProperty("mail.smtps.socketFactory.port",
    // smtpConnection.getSmtpPort());
    // props.setProperty("mail.smtps.socketFactory.fallback", "false");
    // props.setProperty("mail.smtps.starttls.enable","true");
    props.setProperty("mail.smtp.host", smtpConnection.getSmtpHost());
    props.setProperty("mail.smtp.port", smtpConnection.getSmtpPort());
    // // SMTP-Auth?
    // SmtpAuthenticator smtpAuthenticator = null;
    // String smtpAuthUser = smtpConnection.getSmtpAuthUser();
    // String smtpAuthPass = smtpConnection.getSmtpAuthPass();
    // if((smtpAuthUser != null) && (smtpAuthPass.length() >= 1) &&
    // (smtpAuthPass != null) && (smtpAuthPass.length() >= 1)) {
    // smtpAuthenticator = new SmtpAuthenticator(smtpAuthUser, smtpAuthPass);
    // // Authentifizierung erzwingen
    // props.setProperty("mail." + proto + ".auth" , "true");
    // Session session = Session.getInstance(props, smtpAuthenticator);
    Session session = Session.getInstance(props, null);
    // Just in case...
    session.setDebug(true);
    return(session);
    // javax.mail.Session und MimeMessage erstellen
    Session jms = JavamailUtils.assembleJavaxMailSession(smtpConnection);
    MimeMessage mm = this.assembleMimeMessage(mailBasis, jms,
    facesContext.getViewRoot().getLocale());
    // Mail versenden
    // // Der einfache Weg
    // Transport.send(mm);
    // // Der komplizierte Weg
    // SMTPTransport transport =
    // (SMTPTransport)jms.getTransport(smtpConnection.isSslConnection() ?
    // MailTransportProtocolEnum.SMTP_SSL.getProtocolId() :
    // MailTransportProtocolEnum.SMTP.getProtocolId());
    // transport.setStartTLS(true);
    // transport.connect(smtpConnection.getSmtpHost(),
    // smtpConnection.getSmtpPortAsInt(),
    // smtpConnection.getSmtpAuthUser(),
    // smtpConnection.getSmtpAuthPass());
    // transport.sendMessage(mm, mm.getAllRecipients());
    // transport.close();
    // Welches Protokoll?
    String protocol = smtpConnection.isSslConnection() ?
    MailTransportProtocolEnum.SMTP_SSL.getProtocolId() :
    MailTransportProtocolEnum.SMTP.getProtocolId();
    SMTPTransport transport = (SMTPTransport)jms.getTransport(protocol);
    // SMTP-Auth?
    String smtpAuthUser = smtpConnection.getSmtpAuthUser();
    String smtpAuthPass = smtpConnection.getSmtpAuthPass();
    if((smtpAuthUser != null) && (smtpAuthPass.length() >= 1) &&
    (smtpAuthPass != null) && (smtpAuthPass.length() >= 1)) {
    jms.getProperties().setProperty("mail." + protocol + ".auth", "true");
    transport.connect(smtpConnection.getSmtpHost(),
    smtpConnection.getSmtpPortAsInt(),
    smtpConnection.getSmtpAuthUser(),
    smtpConnection.getSmtpAuthPass());
    else {
    transport.connect();
    transport.sendMessage(mm, mm.getAllRecipients());
    transport.close();

    I haven't evaluated all the details of the RFC 2476, but it works fine for me.
    Use:
    java -Dmail.smtp.starttls.enable=true -Dmail.smtp.port=587 smtpsend -A -d -M smtp.gmail.com -U user -P password ...You can't directly find out which type of connection the server expects,
    but you can try the different connection types until one works.

  • Port 25 works fine for SSL/SMTP, but not port 587?

    So after doing a rather painful migration to new hardware to support 10.5 from a previously working 10.4 config...
    I got SSL working -- web service is fine, mail service is fine for all ports for POP and IMAP...but not port 587.
    - It's open on my firewall
    - There's no software firewall impeding it
    - Trying to telnet to port 587 results in nothing
    It's as if the server isn't even listening to the port...
    And the odd part?
    - Mac OS X desktop clients report they can't connect on 587. Changing the port to 25 and leaving everything else the same (auth type, username, password) -- suddenly it works...BUT
    - The iPhone is configured for port 587 and works every time.
    My guess it that iPhone auto falls back to port 25 if all else fails, I can't explain why it would work. Bigger question, I suspect something got munged in the migration...is it possible it needs to be told to listen on 587 as well?

    I saw that site...it mentions adding port 587 specifically -- or commenting out "the appropriate lines of master.cf"
    I assume that means to uncomment out the submission port in that file -- or would it be better to add 587 specifically?
    Also, I never allow unauth SMTP (even inside my network) -- I would want to continue to impose that on the submission port and the normal port 25; how do I do this?
    Thanks in advance for the help.

  • Please help! Not able to set Video input Port(S-Video or Composite)on Linux

    Hi
    I am using JMF2.1.1e(Linux performance pack) for video capturing on Linux OS. I want to set video input port(S-Video or composite) through my application. I am using the following code:
         if ( dataSource != null )
              arrControls = dataSource.getControls ();
         if ( arrControls != null )
              nCount = arrControls.length;
         System.out.println("No. of Controls: " + nCount);     
         for ( i = 0; i < nCount; i++ )
              if ( arrControls[i] == null )
                   continue;
              if ( !(arrControls[i] instanceof Control) )
                   continue;
              componentControl = ((Control)arrControls).getControlComponent ();
              System.out.println("ComponentControl : " + componentControl);
              if ( componentControl == null )
                   continue;
    But, i am getting No. of Controls: 0 (Zero). So i am not able to get any control component also. Rest of the application is working fine. Please help me solving this problem.
    Thanks in advance.

    To go a stage further.
    Google run a Jabber server for their service.
    Jabber apps (those that can) use a Protocol called Jingle to make the A/V connections.
    Google's version is not even that compatible with other Jabber apps. (See Here)
    The Plug-in in the Google Install (Or the Standalone Web Browser Plug-in allow Browsers to access the GoogleTalk A/V side as does the Standalone PC app called GoogleTalk as well.
    iChat uses a process called SIP (Session Initiation Protocol) to connect to other iChat Users or to the AIM for PC app.
    However this also works in any iChat to iChat Connection no matter if the Buddy List is an AIM Login based one, Jabber (including GoogleTalk) or A LAN based Bonjour Chat.
    In you care this is not going to work.
    Getting the Standalone (Intel only) Browser Plug-in and using the Chat option in the Google Mail Web page is probably the easiest option.
    7:31 PM Friday; January 7, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • I need to modify Postfix to listen to port 587

    Mountain Lion Server OS X 10.8.4
    Running Mail service with Postfix and Dovecot. In production with several mailboxes.
    I need to modify Postfix to listen to port 587. I should be able to telnet to port 587, and finally send mail via 587.
    587 already redirects to 25 via the firewall, but external devices need to visit the internal subnet without modifications to the mail app.
    At this stage I just want to get it working with password authentication.   SSL is a project for another day.
    Here's my understanding of the OS X Postfix config:
    /etc/services file:
    Maps service names to port numbers.  Port 25 is  "smtp" and port 587 is "submission".
    /etc/postfix/master.cf file:
    Loads Postfix preferences. Service configurations for "smtp" and "submission" are listed at the top of the file. Each service configuration can be modified with parameters (-o variable_name_here=value_here).
    I found many discussion boards with instructions for enabling 587. They suggest removing the comment syntax for the existing "submission" line:
    # submission inet n - - n - smtpd
    My server didn't have a comment, the line was already enabled:
    submission inet n - - n - smtpd
    I restarted services and 587 didn't work.
    Then I tried a more direct approach:
    587 inet n - - n - smtpd
    This had no effect.
    After each attempt to enable 587 I test with:
    telnet 127.0.0.1 587
    And I get: Connection Refused
    I used the Server app and turned Mail off and on. This stops and starts Postfix.
    I also used commands to restart Postfix:
    postfix stop
    postfix start
    sudo postfix stop
    sudo postfix start
    postfix reload
    sudo postfix reload
    Nothing opens 587.  Any ideas? Thanks in advance for your insights.
    -SE30Emulation

    @Kraftwerk: You cannot change the TCP port used for SMTP.  Well, technically, you can, but then no other mail servers on the Internet will find and communicate with your mail server.  So... forget that.
    The ISP controls the terms and conditions for the network connection, and particularly controls the network and network access.  There's just no way 'round that either, as the ISP has the network position to implement port blocks and firewalls, and usually the contractual authority to allow or deny access.
    With the proper (static) network connection and proper DNS, there is nothing to struggle with; this stuff works. 
    Which implies your ISP does not offer static connections, or there's an ISP error, or you're attempting to operate a mail server on a dynamic address.  None of this works.
    You might try mailhop service — if that's permitted within the limits of the terms of service — but it'll be easier and cheaper to host your mail elsewhere.  Or to get a static IP address and proper public DNS, if your ISP offers that. 
    SMTP services are also tied to DNS, as well; other mail servers use DNS checks to detect rogue (spam) servers, and a mail server erroneously configured on a dynamic IP address will have mismatched DNS, and other mail servers will detect that and drop mail from and often to that mail server; that server is indistinguishable from a spam engine.
    There's rather more the ISP can do as part of best-practices networking, too.  TCP port 25 connections both inbound and outbound are usually spam engines operating on malware-infested, so it's common to block that traffic to reduce the volume of spam.  Various ISPs will further blacklist dynamic IP address blocks, which means other SMTP servers using these blacklist services will ignore servers in these address ranges.
    Get static IP.  Or host elsewhere.  Or (if permitted) mail hop. 

  • SMTP does not start on port 587

    I just activated IMAP and SMTP on an old G5 Server running the latest version of Leopard.
    Everything, but for one thing, runs fine.  IMAP works correctly from both the local network and any distant network I could try it.  SMTP runs fine on the local network but only on port 25.  Nothing is listening on port 587, or 465.  Hence, SMTP does not work from a distant network. 
    The firewall is off, but even from the localhost, or any machine for that matter, telneting to port 587 does not get an answer :
    telnet 127.0.0.1 587
    Trying 127.0.0.1...
    telnet: connect to address 127.0.0.1: Connection refused
    telnet: Unable to connect to remote host
    I did activate ssl for smtp in the Advance>Security tab.  It uses the same selfsigned certificate as IMAP, which works fine.  I can also tunnel in from a distant machine and SMTP will work. 
    I tried to uncomment the following four lines in master.cf
    #smtps     inet  n       -       n       -       -       smtpd
    #  -o smtpd_tls_wrappermode=yes
    #  -o smtpd_sasl_auth_enable=yes
    #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
    but I only lost connection on port 25 and got nothing on port 587.  This feels good, but I have no idea where to go from here.
    Any one has any suggestion ?

    I understand well that this is exactly SMTP, but just running on a different port, port 587, for submission, while port 25 is for relaying between server
    That's pretty much it, except that port 587 should be configured to accept mail from authenticated users only (as determined by the line:
      -o smtpd_client_restrictions=permit_sasl_authenticated,reject
    This enables authenticated users (e.g. users who have accounts on the server) to send mail through the server without restriction (e.g. they can be remote) while unauthenticated users (including remote mail servers sending mail to your domain) use the standard port 25
    should I uncomment the lines for smtps in order to use SSL ?
    smtps is still different from SMTP (25) and submission (587). Both SMTP and Submission can use SSL if you enable tls support - tls enables a connection to start off insecure/unencrypted and switch to encrypted if both the client and server acknowledge they support it. It's generally not recommended to require SSL/TLS unless you're sure every client that's going to use that service can support (and is configured to use) encryption.
    smtps (which requires SSL) is now deprecated in favor of TLS (which allows the server to support both encrypted and unencrypted connections on the same port number).

  • Why port 587 as opposed to 25?

    This morning I booted up my computer, and suddenly, while I could receive all my mail on all my mail account, I couldn't SEND anything -- on either my .mac accounts, my comcast accounts, or my domain name account.
    While reading another thread here on this topic, someone suggested switching to port 587 instead of 25. I did so, and now my mac account sends perfectly.
    I'm glad of this, but why did this work? I always like to know why something works so I can troubleshoot in the future and know if it's a solution I can try for future problems.

    You are correct, sir. But something changed.
    It helped because while something changed to block connections on port 25, 587, which is also useable for email submission, was not blocked.
    Ff we Google "port 587" we find, among other things, the relevant RFC. RFCs are how internet standards are proposed and defined.
    http://www.ietf.org/rfc/rfc2476.txt
    One relevant section:
    "Port 587 is reserved for email message submission as specified in this document. Messages received on this port are defined to be submissions. The protocol used is ESMTP [SMTP-MTA, ESMTP], with additional restrictions as specified here.
    "While most email clients and servers can be configured to use port 587 instead of 25, there are cases where this is not possible or convenient. A site MAY choose to use port 25 for message submission, by designating some hosts to be MSAs and others to be MTAs."
    That's why.
    -Fred

  • Fatal: bind 0.0.0.0 port 587: Address already in use

    Help! Anyone know what this means and how to fix it? Our mail is down.
    Thanks!

    Well, I looked at the log and tried to remember what I was doing at the time this error happened.
    It turns out that I decided no one uses POP, so I disabled POP and removed ports 25, 110 and 995 from the router. When I opened these ports back up on the router, mail went back to normal.
    What do these ports have to do with port 587?

Maybe you are looking for