Sending Mail Content as Input to Java WebService through SOA

Hi Experts,
I am working on a SOA project in 11.1.1.6
My project requirement is to send Mail Content (a paragraph with 3 lines with new lines in middle of statements) as input to the Java API which is deployed as webservice.
To one of the arguments of the Java API, I need to pass this mail content as Input. Need your expert advice on the same. Thanks in Advance.
Example of Mail Content:
Hi,
This is a Test Mail
Thanks

- create a new webservice in the composite and link it to your bpel
- in your bpel invoke the partnerlink
- to "format" you mail you could create a custom xsl which will create the mail in html format for you"
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="html"/>
<xsl:template match="/">
Hi,<br/>
<br/>
This is a Test Mail<br/>
<br/>
Thanks
</xsl:template>
</xsl:stylesheet>Or css and style the html email in a big cleaner way

Similar Messages

  • Send mails with csv file as an attachment through oracle(SQL SCripts / Stor

    Hello Everybody,
    I have recently come across a requirement in which I am supposed to send mails with csv file as an attachment through oracle(SQL SCripts / Stored Procedure) .
    The contents of the csv file are to be retreived from the Database as well as the content of the mail and to whom it needs to be sent has also to be picked up from the database.
    Can somebody suggest me with a suitable code for the same?
    Would be of great help..!!
    Thanks & Regards,
    - VR
    Edited by: user646716 on Dec 18, 2009 10:44 AM

    read below links
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:255615160805
    http://www.orafaq.com/wiki/Send_mail_from_PL/SQL#Send_mail_with_UTL_TCP_-withattachments
    How to send csv file as an attachment

  • Outlook 2010 Terminal Services; Error when sending mail "Content within this application coming... "About:Internet"

    Hi All,
    We have Outlook 2010 running on Terminal Services for one of our clients. Frequently users experience an error when trying to send mail.  A message pops up stating the follow (sorry I cannot post pictures or links yet which would make this much easier)
               "Content within this application coming from the website listed below is being blocked by Internet Explorer Enhanced Security Configuration."    About:Internet
    If I try to add this to the Trusted Sites zone it tells me that I have already done so.  All users are experiencing this issue. Not sure what can be done from our end to alleviate this problem.  Any advice?

    Either remove this "About:Internet" or disable Internet Explorer Enhanced Security Configuration on the terminal server:
    To disable IE ESC for all users
    Close all instances of Internet Explorer.
    Click Start, point to Administrative Tools, and then click
    Server Manager.
    If a User Account Control dialog box appears, click Continue.
    Under Security Summary, click Configure IE ESC.
    Under Administrators, click Off (Recommended).
    Under Users, click Off (Recommended).
    Click OK.
    Worked for me. Thanks!

  • Send mail from Portal application using java

    Hi everybody,
    I'm looking for a way to send mails from my portal application written in java.
    Now I've read a lot of topics on this but can't seem to get it straight.
    I added a few jars to my project among which is
    coll.appl.gw.srvcmail_api.jar
    Here you have the ISendMailItem.class and ISendMailService.class files.
    Now I know these are interfaces so I created 2 new classes:
    Mail implementing ISendMailItem
    SendMail implementing ISendMailService
    And all of the forced methods are created for me but now I don't know how to use these classes to be able to send a mail.
    Can someone help me with this please?
    Thank you
    Regards
    Wouter

    Hey Göran,
    Thank you for this example.
    for the transport i've put this
    transport.connect( "smtpgateway.arinso.com", "", "" );
    Is this correct? or do I need to fill in more info?
    I've adde the mail.jar to my buildpath and put your code in a eventhandler.
    When I now generate the corresponding event i get an Exception:
    java.lang.ClassCastException: javax.mail.Session
    Do you know why I get this?
    Thank you
    Wouter
    Message was edited by:
            Wouter Delellio

  • TS3276 I can't send mail but can receive mails on my macbook. However, I can send mails by logging into yahoo or gmail through Safari.

    I am using a macbook pro. I am not able to send any mails from my mac. I can recieve mails, but can't send.
    However, I can send mails when I log into yahoo or gmail from safari.
    Please give me measures to correct this issue.
    Thank You.
    Neel Jain
    <Email Edited by Host>

    I am using a macbook pro. I am not able to send any mails from my mac. I can recieve mails, but can't send.
    However, I can send mails when I log into yahoo or gmail from safari.
    Please give me measures to correct this issue.
    Thank You.
    Neel Jain
    <Email Edited by Host>

  • HT1430 Can't send mail from yahoo on my iPhone 3G through AT&T

    I tried resetting the phone and it still won't send emails. It's not my yahoo account as it works from my iPad and my laptop. I'm trying to  til fall to buy a new phone so I can switch carriers...any ideas on how to fix this issue?

    Sorry for not being clear. Regarding the Hotmail, I can download the mail and even reply. The problem is, I cannot see the original email I am replying to. This makes responding to a long email difficult, as well as making corrections from the original email. Will setting up the iPad e-mail client to use POP to download my Hotmail rectify the problem I just explained? Thanks.
    It is Yahoo I cannot reply to at all. Any suggestions re: Yahoo?

  • Java Session problem while sending mail(using javamail) using Pl/SQL

    Hello ...
    i am using Java stored procedure to send mail. but i'm getting java session problem. means only once i can execute that procedure
    pls any help.

    props.put("smtp.gmail.com",host);I doubt javamail recognizes the 'smtp.gmail.com' property. I think it expects 'mail.host'. Of course since it cannot find a specified howt it assumes by default localhost
    Please format your code when you post the next time, there is a nice 'code' button above the post area.
    Mike

  • Sending mail  in Struts applns

    All,
    myself developing a website for my company for applying 'jobs ' by employees and visitors
    for regestering , functionality is similar to how we have in java.sun.com site when we login as a new user who does not have a sun account
    my doubt was when the user registers and then logs in, , he gets 'Welcome.. ... ' and also a mail is sent to him saying 'Confirmation of Account'
    this mail is sent along with subject , body
    i also have to implement something similar using Struts Framework ?
    Do i use Java mail ? or any other alternative?
    Rgds

    ... besides which you don't actually USE struts or JSP to send mail.
    Its just plain java code - the same as you would use in any java application.
    Struts/JSP have no support for sending email.
    They do let you run java code though.
    And the java code can call the appopriate class to send mail in java.
    Now what would the class be? [url http://java.sun.com/developer/onlineTraining/JavaMail/contents.html]JavaMail perhaps?

  • How to send Mail in JSP

    Hi,
    I am newbee in Java, I want to send mail to different accounts using java from my website. Plz help me with working example. I am new to java.
    Thanks in advance,
    devom

    Thanks, but I want to send mail from my WEb page that is in JSP. The arcticle pointed out sends mail in core java. I already know how to send in Core java, but i want to send through JSP. Plz help me.
    Thanks in advance,
    Devom

  • Sending mail using smtps protocol

    Could anyone post a piece of code to show how to send a message using smtps protocol?
    SSLNotes of 1.3.2ea version say that it's possibile, but i tried whithout success....
    Thanks

    Hello,
    I can send the mail using SMTP with the help of java mail api. But i want to send mail using SMTPS protocol using java. The mail should be encrypted format.
    So, my queries are:
    1. How to send mail using SMTPS protocol?
    2. I want to send the mail as encryption mail. So how to create encrypted mail.?
    Thanks in advance.
    From
    Rajendra.

  • I can't send mail

    I am suddenly having trouble sending mail.  I've checked my settings through ATT, they are correct and used their connection assistant which comes up as a green light.  I'm receiving mail but just can't send it.  They suggest delting the account online, but then I would lose everything.
    I have one main account and 3 sub-accounts, same problem with all of them.  I have also run disc repair and the iMail troubleshooter and tried re-installing mail, but my iMac won't let me.
    I have an iMac bought in 2007 with intel, running Snow Leopard and 3 Gigs RAM.

    I have an error that says it can't connect to port 537 TSL because it's an ssl.  I have ssl selected. It happens with replyies as well as new messages.
    This is a copy of the connection doctor detail:
    WROTE Nov 28 06:45:44.705 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0e4470 -- thread:0x119c16e50
    PASS *********
    READ Nov 28 06:45:44.780 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0e3240 -- thread:0x101112930
    -ERR [AUTH] invalid user/password
    READ Nov 28 06:45:44.862 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cd8770 -- thread:0x11825eca0
    +OK maildrop ready, 185 messages (6846918 octets) (19255228)
    READ Nov 28 06:45:44.884 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0de7d0 -- thread:0x119d305f0
    +OK maildrop ready, 222 messages (8064631 octets) (8515549)
    WROTE Nov 28 06:45:44.889 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cd8770 -- thread:0x11825eca0
    QUIT
    WROTE Nov 28 06:45:44.915 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0de7d0 -- thread:0x119d305f0
    QUIT
    READ Nov 28 06:45:44.937 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cc7800 -- thread:0x11820cdb0
    +OK maildrop ready, 0 messages (0 octets) (0)
    WROTE Nov 28 06:45:44.994 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cc7800 -- thread:0x11820cdb0
    QUIT
    READ Nov 28 06:45:45.008 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cd8770 -- thread:0x11825eca0
    +OK server signing off.
    READ Nov 28 06:45:45.012 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0de7d0 -- thread:0x119d305f0
    +OK server signing off.
    READ Nov 28 06:45:45.066 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c8c090 -- thread:0x119c7c350
    +OK maildrop ready, 113 messages (6040458 octets) (6252716)
    READ Nov 28 06:45:45.082 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0e4470 -- thread:0x119c16e50
    +OK maildrop ready, 3 messages (180007 octets) (184308)
    WROTE Nov 28 06:45:45.096 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c8c090 -- thread:0x119c7c350
    QUIT
    READ Nov 28 06:45:45.114 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cc7800 -- thread:0x11820cdb0
    +OK server signing off.
    WROTE Nov 28 06:45:45.120 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0e4470 -- thread:0x119c16e50
    QUIT
    READ Nov 28 06:45:45.265 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0e4470 -- thread:0x119c16e50
    +OK server signing off.
    READ Nov 28 06:45:45.272 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c8c090 -- thread:0x119c7c350
    +OK server signing off.
    CONNECTED Nov 28 06:46:13.175 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119c9c310 -- thread:0x11b0bd330
    READ Nov 28 06:46:13.541 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119c9c310 -- thread:0x11b0bd330
    220 smtp111.sbc.mail.mud.yahoo.com ESMTP
    CONNECTED Nov 28 06:46:43.661 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119c70800 -- thread:0x11b0bd330
    READ Nov 28 06:46:44.033 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119c70800 -- thread:0x11b0bd330
    220 smtp107.sbc.mail.mud.yahoo.com ESMTP
    WROTE Nov 28 06:46:44.057 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119c70800 -- thread:0x11b0bd330
    HELO [192.168.1.8]
    READ Nov 28 06:46:44.142 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119c70800 -- thread:0x11b0bd330
    250 smtp107.sbc.mail.mud.yahoo.com
    CONNECTED Nov 28 06:46:44.300 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:587 -- socket:0x119c70800 -- thread:0x11b0bd330
    CONNECTED Nov 28 06:47:14.515 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c70800 -- thread:0x11b0bd330
    READ Nov 28 06:47:14.594 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c70800 -- thread:0x11b0bd330
    220 smtp115.sbc.mail.gq1.yahoo.com ESMTP
    WROTE Nov 28 06:47:14.619 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c70800 -- thread:0x11b0bd330
    HELO [192.168.1.8]
    READ Nov 28 06:47:14.698 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c70800 -- thread:0x11b0bd330
    250 smtp115.sbc.mail.gq1.yahoo.com
    CONNECTED Nov 28 06:47:14.806 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c34ad0 -- thread:0x11b0bd330
    READ Nov 28 06:47:14.884 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c34ad0 -- thread:0x11b0bd330
    220 smtp101.sbc.mail.gq1.yahoo.com ESMTP
    WROTE Nov 28 06:47:14.910 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c34ad0 -- thread:0x11b0bd330
    HELO [192.168.1.8]
    READ Nov 28 06:47:14.989 [kCFStreamSocketSecurityLevelNone]  -- host:outbound.att.net -- port:587 -- socket:0x119c34ad0 -- thread:0x11b0bd330
    250 smtp101.sbc.mail.gq1.yahoo.com
    CONNECTED Nov 28 06:48:05.279 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    CONNECTED Nov 28 06:48:05.306 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    CONNECTED Nov 28 06:48:05.309 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    CONNECTED Nov 28 06:48:05.311 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    CONNECTED Nov 28 06:48:05.312 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    CONNECTED Nov 28 06:48:05.314 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119ff5a20 -- thread:0x119d564f0
    CONNECTED Nov 28 06:48:05.314 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    CONNECTED Nov 28 06:48:05.316 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    CONNECTED Nov 28 06:48:05.318 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    READ Nov 28 06:48:05.336 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    220 fed1rmimpo210 cox ESMTP server ready
    CONNECTED Nov 28 06:48:05.339 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    CONNECTED Nov 28 06:48:05.421 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x119cd20b0 -- thread:0x11b0b7600
    CONNECTED Nov 28 06:48:05.423 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x1182f61e0 -- thread:0x1151e7b60
    CONNECTED Nov 28 06:48:05.441 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0b9f40 -- thread:0x11b098a70
    READ Nov 28 06:48:05.531 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    220 fed1rmimpo306 cox ESMTP server ready
    READ Nov 28 06:48:05.685 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x119ff5a20 -- thread:0x119d564f0
    220 smtp112.sbc.mail.gq1.yahoo.com ESMTP
    READ Nov 28 06:48:05.787 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x119cd20b0 -- thread:0x11b0b7600
    220 smtp105.sbc.mail.mud.yahoo.com ESMTP
    READ Nov 28 06:48:05.800 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x1182f61e0 -- thread:0x1151e7b60
    220 smtp106.sbc.mail.mud.yahoo.com ESMTP
    READ Nov 28 06:48:05.810 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0b9f40 -- thread:0x11b098a70
    220 smtp107.sbc.mail.mud.yahoo.com ESMTP
    READ Nov 28 06:48:05.846 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    +OK hello from popgate 2.48.1 on pop120.sbc.mail.sp2.yahoo.com
    READ Nov 28 06:48:05.853 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    +OK hello from popgate 2.48.1 on pop116.sbc.mail.sp2.yahoo.com
    READ Nov 28 06:48:05.857 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    +OK hello from popgate 2.48.1 on pop128.sbc.mail.sp2.yahoo.com
    READ Nov 28 06:48:05.862 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    +OK hello from popgate 2.48.1 on pop130.sbc.mail.sp2.yahoo.com
    READ Nov 28 06:48:05.868 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    +OK hello from popgate 2.48.1 on pop129.sbc.mail.sp2.yahoo.com
    READ Nov 28 06:48:05.871 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    +OK hello from popgate 2.48.1 on pop127.sbc.mail.sp2.yahoo.com
    READ Nov 28 06:48:05.876 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    +OK hello from popgate 2.48.1 on pop118.sbc.mail.sp2.yahoo.com
    WROTE Nov 28 06:48:05.881 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    CAPA
    WROTE Nov 28 06:48:05.906 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    CAPA
    WROTE Nov 28 06:48:05.930 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    CAPA
    WROTE Nov 28 06:48:05.955 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    CAPA
    WROTE Nov 28 06:48:05.978 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    CAPA
    WROTE Nov 28 06:48:06.003 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    CAPA
    WROTE Nov 28 06:48:06.028 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    CAPA
    READ Nov 28 06:48:06.053 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    +OK CAPA list follows
    EXPIRE NEVER
    IMPLEMENTATION popgate 2.48.1
    PIPELINING
    RESP-CODES
    TOP
    UIDL
    USER
    READ Nov 28 06:48:06.079 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    +OK CAPA list follows
    EXPIRE NEVER
    IMPLEMENTATION popgate 2.48.1
    PIPELINING
    RESP-CODES
    TOP
    UIDL
    USER
    READ Nov 28 06:48:06.105 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    +OK CAPA list follows
    EXPIRE NEVER
    IMPLEMENTATION popgate 2.48.1
    PIPELINING
    RESP-CODES
    TOP
    UIDL
    USER
    READ Nov 28 06:48:06.130 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    +OK CAPA list follows
    EXPIRE NEVER
    IMPLEMENTATION popgate 2.48.1
    PIPELINING
    RESP-CODES
    TOP
    UIDL
    USER
    READ Nov 28 06:48:06.153 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    +OK CAPA list follows
    EXPIRE NEVER
    IMPLEMENTATION popgate 2.48.1
    PIPELINING
    RESP-CODES
    TOP
    UIDL
    USER
    READ Nov 28 06:48:06.176 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    +OK CAPA list follows
    EXPIRE NEVER
    IMPLEMENTATION popgate 2.48.1
    PIPELINING
    RESP-CODES
    TOP
    UIDL
    USER
    READ Nov 28 06:48:06.199 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    +OK CAPA list follows
    EXPIRE NEVER
    IMPLEMENTATION popgate 2.48.1
    PIPELINING
    RESP-CODES
    TOP
    UIDL
    USER
    WROTE Nov 28 06:48:06.224 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    USER [email protected]
    WROTE Nov 28 06:48:06.246 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    USER [email protected]
    WROTE Nov 28 06:48:06.271 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    USER [email protected]
    WROTE Nov 28 06:48:06.295 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    USER [email protected]
    WROTE Nov 28 06:48:06.320 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    USER [email protected]
    WROTE Nov 28 06:48:06.345 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    USER [email protected]
    WROTE Nov 28 06:48:06.368 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    USER [email protected]
    READ Nov 28 06:48:06.392 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    +OK password required.
    READ Nov 28 06:48:06.417 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    +OK password required.
    READ Nov 28 06:48:06.442 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    +OK password required.
    READ Nov 28 06:48:06.467 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    +OK password required.
    READ Nov 28 06:48:06.493 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    +OK password required.
    READ Nov 28 06:48:06.518 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    +OK password required.
    READ Nov 28 06:48:06.544 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    +OK password required.
    WROTE Nov 28 06:48:06.570 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    PASS *********
    WROTE Nov 28 06:48:06.595 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    PASS ******
    WROTE Nov 28 06:48:06.623 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    PASS ************
    WROTE Nov 28 06:48:06.647 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    PASS **********
    WROTE Nov 28 06:48:06.674 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    PASS *********
    WROTE Nov 28 06:48:06.700 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    PASS *********
    WROTE Nov 28 06:48:06.726 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    PASS **********
    READ Nov 28 06:48:06.842 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    +OK maildrop ready, 222 messages (8064631 octets) (8515549)
    READ Nov 28 06:48:06.911 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0b8180 -- thread:0x11c412260
    -ERR [AUTH] invalid user/password
    WROTE Nov 28 06:48:06.935 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    QUIT
    READ Nov 28 06:48:06.963 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    +OK maildrop ready, 113 messages (6040458 octets) (6252716)
    READ Nov 28 06:48:06.985 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    +OK maildrop ready, 3 messages (180007 octets) (184308)
    READ Nov 28 06:48:07.001 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    +OK maildrop ready, 0 messages (0 octets) (0)
    WROTE Nov 28 06:48:07.006 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    QUIT
    WROTE Nov 28 06:48:07.033 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    QUIT
    READ Nov 28 06:48:07.036 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119b9ce70 -- thread:0x119b3e590
    +OK server signing off.
    READ Nov 28 06:48:07.045 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    +OK maildrop ready, 64 messages (3207299 octets) (3759629)
    WROTE Nov 28 06:48:07.055 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    QUIT
    READ Nov 28 06:48:07.087 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    +OK maildrop ready, 185 messages (6846918 octets) (19255228)
    WROTE Nov 28 06:48:07.152 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    QUIT
    READ Nov 28 06:48:07.152 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c48a10 -- thread:0x118250ae0
    +OK server signing off.
    READ Nov 28 06:48:07.153 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x11b0bd480 -- thread:0x114559d20
    +OK server signing off.
    READ Nov 28 06:48:07.175 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119cf22f0 -- thread:0x119c82150
    +OK server signing off.
    WROTE Nov 28 06:48:07.202 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    QUIT
    READ Nov 28 06:48:07.303 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:pop.att.yahoo.com -- port:995 -- socket:0x119c7efb0 -- thread:0x119c91330
    +OK server signing off.
    READ Nov 28 06:48:07.361 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:inbound.att.net -- port:995 -- socket:0x119cb4530 -- thread:0x119c08380
    +OK server signing off.
    WROTE Nov 28 06:48:35.514 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    EHLO [192.168.1.8]
    READ Nov 28 06:48:35.574 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    250-fed1rmimpo210 hello [67.124.28.79], pleased to meet you
    250-HELP
    250-AUTH LOGIN PLAIN CRAM-MD5
    250-SIZE 28672000
    250-ENHANCEDSTATUSCODES
    250-8BITMIME
    250-STARTTLS
    250 OK
    WROTE Nov 28 06:48:35.601 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    STARTTLS
    WROTE Nov 28 06:48:35.635 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    EHLO [192.168.1.8]
    READ Nov 28 06:48:35.667 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    220 2.0.0 Ready to start TLS
    READ Nov 28 06:48:35.704 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    250-fed1rmimpo306 hello [67.124.28.79], pleased to meet you
    250-HELP
    250-AUTH LOGIN PLAIN CRAM-MD5
    250-SIZE 28672000
    250-ENHANCEDSTATUSCODES
    250-8BITMIME
    250-STARTTLS
    250 OK
    WROTE Nov 28 06:48:35.731 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    STARTTLS
    READ Nov 28 06:48:35.790 [kCFStreamSocketSecurityLevelNone]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    220 2.0.0 Ready to start TLS
    CONNECTED Nov 28 06:48:35.812 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x11b0e9a60 -- thread:0x119d564f0
    WROTE Nov 28 06:48:35.926 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    EHLO [192.168.1.8]
    CONNECTED Nov 28 06:48:35.937 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x1182de150 -- thread:0x11b0b7600
    CONNECTED Nov 28 06:48:35.938 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0f6210 -- thread:0x1151e7b60
    CONNECTED Nov 28 06:48:35.957 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0d3800 -- thread:0x11b098a70
    READ Nov 28 06:48:35.986 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    250-fed1rmimpo210 hello [67.124.28.79], pleased to meet you
    250-HELP
    250-AUTH LOGIN PLAIN CRAM-MD5
    250-SIZE 28672000
    250-ENHANCEDSTATUSCODES
    250-8BITMIME
    250 OK
    WROTE Nov 28 06:48:36.041 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    AUTH PLAIN ****************************
    WROTE Nov 28 06:48:36.058 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    EHLO [192.168.1.8]
    READ Nov 28 06:48:36.109 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119f89cc0 -- thread:0x119ff8a60
    535 5.7.0 ...authentication rejected
    READ Nov 28 06:48:36.123 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    250-fed1rmimpo306 hello [67.124.28.79], pleased to meet you
    250-HELP
    250-AUTH LOGIN PLAIN CRAM-MD5
    250-SIZE 28672000
    250-ENHANCEDSTATUSCODES
    250-8BITMIME
    250 OK
    WROTE Nov 28 06:48:36.158 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    AUTH PLAIN  (*** 32 bytes hidden ***)
    READ Nov 28 06:48:36.219 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:smtp.west.cox.net -- port:587 -- socket:0x119b639a0 -- thread:0x119c4a8c0
    535 5.7.0 ...authentication rejected
    READ Nov 28 06:48:36.248 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x11b0e9a60 -- thread:0x119d564f0
    220 smtp110.sbc.mail.gq1.yahoo.com ESMTP
    WROTE Nov 28 06:48:36.272 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x11b0e9a60 -- thread:0x119d564f0
    HELO [192.168.1.8]
    READ Nov 28 06:48:36.303 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x1182de150 -- thread:0x11b0b7600
    220 smtp110.sbc.mail.mud.yahoo.com ESMTP
    READ Nov 28 06:48:36.310 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0f6210 -- thread:0x1151e7b60
    220 smtp111.sbc.mail.mud.yahoo.com ESMTP
    READ Nov 28 06:48:36.326 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0d3800 -- thread:0x11b098a70
    220 smtp112.sbc.mail.mud.yahoo.com ESMTP
    WROTE Nov 28 06:48:36.327 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x1182de150 -- thread:0x11b0b7600
    HELO [192.168.1.8]
    WROTE Nov 28 06:48:36.352 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0f6210 -- thread:0x1151e7b60
    HELO [192.168.1.8]
    READ Nov 28 06:48:36.367 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x11b0e9a60 -- thread:0x119d564f0
    250 smtp110.sbc.mail.gq1.yahoo.com
    WROTE Nov 28 06:48:36.376 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0d3800 -- thread:0x11b098a70
    HELO [192.168.1.8]
    READ Nov 28 06:48:36.412 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x1182de150 -- thread:0x11b0b7600
    250 smtp110.sbc.mail.mud.yahoo.com
    READ Nov 28 06:48:36.437 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0f6210 -- thread:0x1151e7b60
    250 smtp111.sbc.mail.mud.yahoo.com
    WROTE Nov 28 06:48:36.453 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:outbound.att.net -- port:465 -- socket:0x11b0e9a60 -- thread:0x119d564f0
    QUIT
    READ Nov 28 06:48:36.478 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0d3800 -- thread:0x11b098a70
    250 smtp112.sbc.mail.mud.yahoo.com
    WROTE Nov 28 06:48:36.504 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x1182de150 -- thread:0x11b0b7600
    QUIT
    WROTE Nov 28 06:48:36.528 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0f6210 -- thread:0x1151e7b60
    QUIT
    WROTE Nov 28 06:48:36.580 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:smtp.att.yahoo.com -- port:465 -- socket:0x11b0d3800 -- thread:0x11b098a70
    QUIT

  • Sending Mail in GP

    Hi All,
    I am not able to connecting the process "send the mail to GP ",if any configuration needed for nwa or config tool in CE7.1 sp5
    Thanks ,
    vinoth

    Hi,
    do you want to send mails in GP.
    If so, go through thi[thread|Re: E-mail/ Notification]

  • Send Mail timed out

    Ok, so I'm relatively new to OS x server but I consistantly am having a sendmail problem. I can receive mail and send mail "most" of the time. But, I do get errors when sending to blackberry's, hotmail, and essentially random domains. What I get are conection timed out error. Heres an example from my SMTP log :
    Nov 9 19:36:56 (servername) postfix/smtp[21684]: connect to mail.senecac.on.ca[142.204.1.36]: Operation timed out (port 25)
    First of all, anyone have any comments or solutions?
    Second On my router I have doubled/triple checked that my port 25 is open. I can send send mail to some domains with no fail. When i send to my blackberry i get log data like this :
    Nov 9 19:31:02 Winterswarmth postfix/smtp[21627]: A566E3F45C: to=<[email protected]>, relay=none, delay=30, status=deferred (connect to mail.senecac.on.ca[142.204.1.36]: Operation timed out)
    Nov 9 19:31:02 Winterswarmth postfix/smtp[21628]: connect to mx1.rog.mail.yahoo.com[67.28.113.16]: Operation timed out (port 25)
    Nov 9 19:31:32 Winterswarmth postfix/smtp[21628]: connect to mx1.rog.mail.yahoo.com[64.156.215.23]: Operation timed out (port 25)
    Nov 9 19:32:02 Winterswarmth postfix/smtp[21628]: connect to mx2.rog.mail.yahoo.com[66.94.225.172]: Operation timed out (port 25)
    Nov 9 19:32:03 Winterswarmth postfix/smtp[21628]: A566E3F45C: to=<[email protected]>, relay=mx2.rog.mail.yahoo.com[206.190.37.6], delay=91, status=sent (250 ok dirdel)
    In the end it send, it just takes several attempts.
    Any help would be appreciated.

    I think you are confusing things here.
    While you can change the port used for submission from your mail clients to your mail server, you cannot (should not) change the outgoing port for your smtp server. All mail servers expect incoming traffic on port 25, thus using port 587 will not get your mail delivered (it will go through your firewall, but that's about it).
    If your mail server (not client) is behind a firewall with port 25 blocked, there is no way it can send mail to outside domains. So either get your ISP to let port 25 through for your server or use your ISP's smpt server to send mail (this can be done directly, or through your mail server relaying through your ISPs server).

  • Cannot send mail when out and about

    Hey all
    I recently got my Iphone4 and synced it to my mail on my computer. When using my iphone at home it send mail without a problems as it goes through my wifi I have. Internet is virgin media and mail is with windows mail by the way incase its important.
    When I am out and about I can recieve email without a problem but cannot send anything at all.
    What do I need to do so that I can send mail no matter where I am?
    Thanks
    Ant

    It's most likely exactly the same issue. Most ISPs only allow you to use their outgoing email server whilst connected to their internet service.
    With a mobile device like an iPhone you won't always be connected to your ISPs internet service. Sometimes it will be your mobile network provider (when on 3G), or on some other WiFi service like a public hotspot in Starbucks or McDonalds.
    When you are not connected to your ISPs internet service, you either have to use the SMTP server of the internet provider you are connected to (awkward to keep changing, even if you know it), or you "authenticate" your connection to your ISPs SMTP server (if they allow it) with a username and password so that they can verify it is you who is using their server and not some spammer.
    The best way to avoid all this, is to use an email provider that is totally independent of any internet provider and will therefore work from anywhere, regardless of how you are connecting to the internet.
    GMail and Apple's own MobileMe offer authenticated SMTP servers that work from anywhere.

  • Cannot send mail through VPN

    All the clients on the local network can use smtp.mydomain.com to send mail. If they try remotely connected through the VPN it times out with mail server may be too busy. There are no restrictions for users using the IP addresses given by the server including the VPN clients. Also the VPN client has use VPN for all traffic turned on. Tried different methods of authentication for sending mail and get the same error.
    Can anyone help?
    TIA
    Jeremiah

    Thank you so much for your help. Yes it seems to.....where do I go from there? The first is connected to VPN the second is not.
    ; <<>> DiG 9.4.2-P1 <<>> smtp.XXXXXXX.com
    ;; global options: printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 43733
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;smtp.XXXXXXX.com. IN A
    ;; AUTHORITY SECTION:
    XXXXXXX.com. 3600 IN SOA server.XXXXXXX.com. admin.example.com. 2008082417 10800 3600 604800 3600
    ;; Query time: 21 msec
    ;; SERVER: 192.168.2.1#53(192.168.2.1)
    ;; WHEN: Mon Aug 25 12:57:04 2008
    ;; MSG SIZE rcvd: 96
    XXXXXXX-XXXXXXX-computer:~ XXXXXXX$ dig smtp.XXXXXXX.com
    ; <<>> DiG 9.4.2-P1 <<>> smtp.XXXXXXX.com
    ;; global options: printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 65519
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;smtp.XXXXXXX.com. IN A
    ;; Query time: 47 msec
    ;; SERVER: 10.0.1.1#53(10.0.1.1)
    ;; WHEN: Mon Aug 25 12:57:29 2008
    ;; MSG SIZE rcvd: 39
    XXXXXXX-computer:~ XXXXXXX$

Maybe you are looking for

  • Print a report in java

    Maybe this is not the appropriate section.. My problem is that I'm trying to realize a desktop application connected to a database, which should be able to manage data by GUIs and print report if it's necessary. For the first part everything's ok, bu

  • QuickTime/Flash (*.swf) - no sound

    QuickTime Pro 7.1.6, Flash Player 9UB New problem. Everything copacetic until in middle of class, *.swf file embedded in Keynote presentation had no sound. Visual ok, but no sound when playing *.swf files. Even if just open *.swf file in QT, visual o

  • -50 error message for purchased songs

    Hi, I've been having this problem for a couple months now and have been in contact with apple support (via phone and email) several times, but to no avail. I can't play any of the songs that I've purchased through iTunes; each one played just fine a

  • Upgrade to PS-CS6 from CS3 - legit?

    I found an upgrade package for photoshop CS3 to upgrade to CS6 on motionmedia.com that costs $200. Is this a legitimate upgrade, and will it work? The URL is http://www.motionmedia.com/Adobe-Photoshop-CS6-Upg-from-CS3-or-newer-p/65158686ad01a00.htm

  • IDVD 7.0.2 - motion menus too large, cannot burn disc

    Hi there, Can someone help me out with this. I'm burning a dvd I made for christmas presents, and I need to figure this out before the weekend when I need to hand out the gifts ahh! I finished the dvd, tried to burn it and get the error that reads ba