Sending E-mail issues

For some reason my ipad won't send emails. It constantly tells me that the senders address is wrong. I have checked and checked and double checked those settings and all are correct. They are the same as on my iphone and home computer. There is no problem receiving email, just sending. I tried some of the suggestions from this site but was wondering if anyone out there had the same problem and if the fixed it and how?
Thanks

Hello:
Did you properly fill-in your login and password for BOTH incoming (eg, pop) and outgoing connections(eg, smtp) ? There are two places you must do this if your ISP uses SSL and authentication, and typically port 25 will not be used in these cases. The iPad will auto-configure both, usually picking the authentication and SSL choice and ports correctly, but you must wade/progress through the menus on the SMTP configuration to be sure that a second login/password entry is/is not required -- and otherwise the SMTP port and auth choice are indeed correct.

Similar Messages

  • Bellsouth "send" e-mail issues

    I am having a Bellsouth send e-mail issue that has cropped up in the past couple of weeks (no changes in settings on my side). Don't know if it has anything to do with Bellsouth's conversion to AT&T or not.
    Basically, I can receive e-mail and send newly created, blank e-mail. However, I am unable to send e-mail with attachments or reply to e-mails received or forward e-mails received.
    I tried a suggestion of changing the port number from 25 to 587 to no avail. I confirmed my Preference setups with Bellsouth tech support and they say everything is configured OK. Thinking it might be Apple Mail, I downloaded and used the Thunderbird e-mail client, but that exhibits the same problems noted above (similar message about problems with the STMP server or the server is unavailable or is refusing STMP connections. Again, this only happens with certain types of sent e-mails noted above).
    I am at a complete loss and don't know what to try next. Any suggestions????

    Robert Daddario wrote:
    I am having a Bellsouth send e-mail issue that has cropped up in the past couple of weeks (no changes in settings on my side). Don't know if it has anything to L"*_ with attachments or reply to e-mails received or forward e-mails received.
    I tried a suggestion of changing the port number from 25 to 587 to no avail. I confirmed my Preference setups with Bellsouth tech support and they say everything is configured OK. Thinking it might be Apple Mail, I downloaded and used the Thunderbird e-mail client, but that exhibits the same problems noted above (similar message about problems with the STMP server or the server is unavailable or is refusing STMP connections. Again, this only happens with certain types of sent e-mails noted above).
    I am at a complete loss and don't know what to try next. Any suggestions????
    I had problems when I converted to Mac last Spring, and most of the problems came from the DSL Tech Support Team.
    Please make sure that your settings haven't changed from the following.
    Go to Mail - Accounts
    POP Acct Incoming Server: mail.bellsouth.net
    SMTP - Outgoing Mail Server: mail.bellsouth.net
    Click on Server Settings:
    Sever Port Should Be: 25
    Make sure SSL - Secure Sockets Layer Is *NOT Selected*
    Click OK
    Select Addvanced on the upper right of the Accounts Tab.
    Port should be : 110
    *Do Not Select* Use SSL
    Make sure the following are selected:
    1) Enable This Account
    2) Include When Automatically Checking For New Mail
    3) Remove Copy From Server After Retrieving A Messagee
    Hope this helps.
    I work for at&t - formerly BellSouth, and we haven't done any email transformations for our FastAccess customers, and I'm sure that when we do a Transformation, you will have Dual (bellsouth -at&t) emails for a while so you can advise Family and Friends.

  • Issue sending e-mails from iPad

    I can send and receive e-mails when connected to my home wifi network but when I connect to another wifi network or the 3G network I can only receive e-mails and get error messages when trying to send e-mails. Does anyone have any idea how I can correct this?

    Thanks Ewen - the issue was for the outgoing mail server. My provider ZEN automatically trusts mails sent from users home networks but requires password authentication as well as the use SSL setting to on if using other wifi networks or the 3g network.
    HH ian

  • Sender Verification Number e-mail issue.

    I have tried to e-mail photos through adobe e-mail and the system send me a notice that I need to use a "Sender Verification Number" that has been sent to my email address.  However, when I check my e-mail there is no e-mail message.  How do I get the verification number.  Adobe does have my e-mail address on file. 

    Tried this and it still not working.  Also, Get a message that some of the  files are not photos even though they are all photos from the same camera.  Could it be that Norton 360 is causisng this?  Thanks for your help.
    From: 99jon <[email protected]>
    To: Senderverificationproblem <[email protected]>
    Sent: Sunday, November 27, 2011 2:24 PM
    Subject: Sender Verification Number e-mail issue.
    Re: Sender Verification Number e-mail issue. created by 99jon in Photoshop Elements - View the full discussion
    Open Organizer and click:
    Edit à Preferences à Sharing
    Make sure you have Adobe Email service selected
    Check the fields Your Name and Email Address and ensure you typed the details correctly.
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4048934#4048934
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4048934#4048934. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Elements by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Issues in sending e-mail from FDM

    Hi Experts,
    I am working on FDM v 11.1.1.3, windows 2003 SP2, IIS 6.0 and I am trying to send an e-mail using the Send Mail accelerator and following is the code:
    'Define variables etc.
    strFromAddress = DW.Security.fUserEmailGet(DW.Connection.PstrUserID)
    strToAddress = "[email protected]" '"YourToAddress"
    strSubject = "Import Failed" '"YourSubjectLine"
    strEmailMsgLine = "The import process has failed." '"YourMessageLine"
    strSMTPServer = "smtp.gmail.com"
    'CdoSendUsing enumeration-1=use smtp on local machine, 2=use smtp over network
    intSendUsing = 1
    'SMTP port on server
    intSMTPPort = 25
    Set objConfig = CreateObject("CDO.Configuration")     
    With objConfig.Fields
         .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = intSendUsing
         .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTPServer
         .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")= intSMTPPort
         .Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 10
         .Update
    End With
    'Create CDO message object
    Set objMsg = CreateObject("CDO.Message")     
    'Assign config object to configuration property of message object
    Set objMsg.Configuration = objConfig
    'Set Message object settings and send mail
    With objMsg
         .To = strToAddress
         .From = strFromAddress
         .Subject = strSubject
         .TextBody = strEmailMsgLine
         .Send
    End With
    'Destroy message objects
    Set objMsg = Nothing
    Set objConfig = Nothing
    When I set 'CdoSendUsing' to 1, an eml file gets generated on the path 'C:\Inetpub\mailroot\Pickup' but I never receive it on my gmail ID. When I set the 'CdoSendUsing' to 2, I get an error on the .Send line saying 'The server rejected the sender address. Server response was 530 5.7.0 must issue a STARTTLS command first'. I also checked the MetaBase.XML, 'PickupDirectory' is set.
    Please suggest where am I going wrong.
    Thanks & Regards!

    Just to confirm what Tony is saying :
    - It's highly unlikely that Google functions as a Mail Relay for SMTP. If it did spammers would have a field day. An open relay is a mail server that will forward emails sent to it from unknown 3rd parties. I'm not familiar with your Google service; however, if they allow any type of mail relaying form you, it is probably secure with at least a login and password so they know it is coming from you. (This would mean when you use the CDONTS object, you'll need to supply a sender login and password)
    - The reason why files are accumulating in the Pickup folder is you do not have a running SMTP service that is processing emails on the server that you pointed FDM to. For reference, the following folders are used by your typical SMTP mail service :
    * Pickup : Email files waiting to be picked up by the SMTP server for processing (if you open the EML file in a text editor, should be apparent what it is) If the email is meant for an external party, it will be sent to their mail server. If the message is meant for an internal user, gets moved to Drop folder.
    * Drop : Incoming messages for local users are stored here
    * Queue : Messages that were sent but could not be immediately delivered are placed here. These will be resent at various intervals for a predetermined amount of attempts.
    * Badmail : Messages that could not be delivered. Viewing in a text editor should indicate the failure, etc. Senders are not notified of these failures in most cases unless an Admin notifies them based on what is in this folder.
    The easiest option here is to install SMTP on the FDM box and call it a day.
    * MS Install Instructions for Server 2003 - http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/e4cf06f5-9a36-474b-ba78-3f287a2b88f2.mspx?mfr=true
    * MS Configuration information for SMTP on IIS 6.0
    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/e4cf06f5-9a36-474b-ba78-3f287a2b88f2.mspx?mfr=true
    One NOTE :
    - If your company has a mailserver (who doesn't?? :) ), the MX record will be linked to the IP of that machine and not your SMTP box. Certain anti-spam solutions as well as other mail servers might reject your emails as when they perform a reverse lookup, the IP address of your SMTP server will not match that of your MX entry (DNS).
    If this happens, you should configure your FDM SMTP server to send its mail to your local mail server and talk to your IT department to make sure all necessary changes are in place. (i.e. you might need to configure Exchange to let your FDM SMTP use it as a mail relay, etc)

  • IPhone and Cox e-mail issues -- sender address not valid?

    I have had an iPhone for several years and have never had a problem with e-mail and Cox internet. However, I transferred my service this week to a new address - same account information - and now my e-mail is not working correctly. Cox told me to reset my password via Webmail, and I did. I also followed the information here as to the correct set up for mail accounts. I can now receive e-mail,but I can't send e-mail. I receive the message - the sender address was invalid- and my outbox is full of unsent messages. I have everything in place according to the online articles posted here and on the Cox site. Can anyone help me correct this issue? Thanks!

    What are you using for an SMTP server?
    Go to Settings, Mail Contacts Calendar, Your mail account, Account Info, Advanced and look for Outgoing Mail Server.
    If Cox does not permit AUTH-SMTP, set it to AT&T's mail server. Even if Cox does permit AUTH-SMTP, try using the AT&T mail server.
    If that doesn't work, try resetting the phone.

  • G5 w/MAIL issues, dropping passwords, trouble sending.

    I have a G5 10.5.8 with MAIL issues. Have had the same settings for years and it has suddenly started dropping my passwords (randomly asking for passwords); blocking outgoing messages (have to send 3-5 times); All settings are the same. I have the correct ports and SSL. Nothing has changed except periodic upgrades. I've erased and reset the keychains – to no avail.
    Got any ideas?

    Some questions:
    Which version of office were you using before? 2003?
    Are the data files on a network, or on your local machine? If they are on a network, can you make a copy of one of them on your local machine and try again?
    Can you open the files directly in Excel? What extension do they have (.xls, or something else?) I am wondering whether access to other file types has been left blocked on your machine but is allowed on your colleague's machine.
    Are you just opening the mail merge main document and seeing this message? If so, do you see the same thing if you start with a new document and try to connect to one of these data sources?
    Can you confirm that the message is about Access even though you are trying to connect to an Excel file?
    (Also, office 2007 has some new stuff - that let's you specify that certain folders are "trusted" . I don't think that ever affected MailMerge but it may be as well to make sure that your documents and data sources are in trusted locations).
    Also worth trying to start Word in "Safe mode" - see, e.g. http://office.microsoft.com/en-gb/word-help/work-with-office-safe-modes-HP010140792.aspx
    Peter Jamieson

  • Issue sending e-mails to certain domain

    I'm having an issue sending e-mails to domain capitaliii.com from my Ironport.  I see the following message in the Ironport log.
    "DNS Temporary Failure capitaliii.com MX - unable to reach nameserver on any valid IP"
    When I issue a nslookup on the MX record from the Ironport, I get the below message.
    Temporary query error:  "unable to reach nameserver on any valid IP" looking up A record for "capitaliii.com" to nameserver
    ns3.digipark.com
    I can however do a successful a successful nslookup from my workstation.  See the results below.  Any ideas?  I've done
    a flushdns on the Ironport to no avail.
    Non-authoritative answer:capitaliii.com  MX preference = 10, mail exchanger = mail1.digipark.commail1.digipark.com      internet address = 64.111.26.141

    Hello Doug,
    check if your firewall in front of the IronPort appliance allows TCP for DNS on port 53.  The query results I get are close to the 512 byte limit, where DNS switches from UDP to TCP:
    cisco$  dig mx capitaliii.com +trace
    ; <<>> DiG 9.6-ESV-R4-P3 <<>> mx capitaliii.com +trace
    ;; global options: +cmd
    .                       274955  IN      NS      f.root-servers.net.
    .                       274955  IN      NS      g.root-servers.net.
    .                       274955  IN      NS      h.root-servers.net.
    .                       274955  IN      NS      i.root-servers.net.
    .                       274955  IN      NS      j.root-servers.net.
    .                       274955  IN      NS      k.root-servers.net.
    .                       274955  IN      NS      l.root-servers.net.
    .                       274955  IN      NS      m.root-servers.net.
    .                       274955  IN      NS      a.root-servers.net.
    .                       274955  IN      NS      b.root-servers.net.
    .                       274955  IN      NS      c.root-servers.net.
    .                       274955  IN      NS      d.root-servers.net.
    .                       274955  IN      NS      e.root-servers.net.
    ;; Received 260 bytes from xxx.xxx.xxx.xxx in 189 ms
    com.                    172800  IN      NS      a.gtld-servers.net.
    com.                    172800  IN      NS      b.gtld-servers.net.
    com.                    172800  IN      NS      c.gtld-servers.net.
    com.                    172800  IN      NS      d.gtld-servers.net.
    com.                    172800  IN      NS      e.gtld-servers.net.
    com.                    172800  IN      NS      f.gtld-servers.net.
    com.                    172800  IN      NS      g.gtld-servers.net.
    com.                    172800  IN      NS      h.gtld-servers.net.
    com.                    172800  IN      NS      i.gtld-servers.net.
    com.                    172800  IN      NS      j.gtld-servers.net.
    com.                    172800  IN      NS      k.gtld-servers.net.
    com.                    172800  IN      NS      l.gtld-servers.net.
    com.                    172800  IN      NS      m.gtld-servers.net.
    ;; Received 504 bytes from 198.41.0.4#53(a.root-servers.net) in 23 ms
    capitaliii.com.         172800  IN      NS      ns4.digipark.com.
    capitaliii.com.         172800  IN      NS      ns3.digipark.com.
    ;; Received 109 bytes from 192.55.83.30#53(m.gtld-servers.net) in 50 ms
    capitaliii.com.         86400   IN      MX      10 mail1.digipark.com.
    capitaliii.com.         86400   IN      NS      ns3.digipark.com.
    capitaliii.com.         86400   IN      NS      ns4.digipark.com.
    ;; Received 147 bytes from 64.111.26.135#53(ns4.digipark.com) in 148 ms
    Hope that helps,
    Andreas

  • Can any body send me some issues about mail sending .

    can any body send me some issues about mail sending .
    thanks alot !
    mail to :<i><b>[email protected]</b></i>

    HI
    GOOD
    GO THROUGH THIS CODE
    REPORT ZTSAPMAIL.
    DATA: X_OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: BEGIN OF X_OBJECT_HD_CHANGE.
    INCLUDE STRUCTURE SOOD1.
    DATA: END OF X_OBJECT_HD_CHANGE.
    DATA: BEGIN OF X_OBJCONT OCCURS 10.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJCONT.
    DATA: BEGIN OF X_OBJHEAD OCCURS 0.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJHEAD.
    DATA: BEGIN OF RAW_HEAD.
    INCLUDE STRUCTURE SORH.
    DATA: END OF RAW_HEAD.
    DATA: BEGIN OF X_RECEIVERS OCCURS 0.
    INCLUDE STRUCTURE SOOS1.
    DATA: END OF X_RECEIVERS.
    PARAMETERS: RECEIVER LIKE X_RECEIVERS-RECNAM. " Name
    *BUILD MESSAGE HEADER
    MOVE 'Sort field goes here' TO X_OBJECT_HD_CHANGE-OBJSRT. " Sort field
    MOVE 'Name of the object goes here' TO X_OBJECT_HD_CHANGE-OBJNAM. " Name
    MOVE 'Document title goes here' TO X_OBJECT_HD_CHANGE-OBJDES. " Title
    MOVE 'F' TO X_OBJECT_HD_CHANGE-OBJSNS. " Functional OBJECT
    MOVE 'E' TO X_OBJECT_HD_CHANGE-OBJLA. " Language
    Object type of the new document
    MOVE 'RAW' TO X_OBJECT_TYPE.
    CLEAR X_OBJCONT.
    MOVE 'Contents of mail' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    CLEAR X_OBJCONT-LINE. APPEND X_OBJCONT.
    MOVE 'More contents' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    MOVE 'Still more contents'
    to x_objcont-line.
    APPEND X_OBJCONT.
    MOVE ' ' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    Specific header (Dependent on the object type, here RAW)
    REFRESH X_OBJHEAD.
    DESCRIBE TABLE X_OBJCONT LINES RAW_HEAD-RAWSIZ.
    MOVE RAW_HEAD TO X_OBJHEAD.
    APPEND X_OBJHEAD.
    *RECEIVERS table
    CLEAR X_RECEIVERS.
    REFRESH X_RECEIVERS.
    MOVE RECEIVER TO X_RECEIVERS-RECNAM. " Name
    MOVE 'B' TO X_RECEIVERS-RECESC. " Receiver type
    MOVE 'X' TO X_RECEIVERS-SNDCP. " Send as a copy
    MOVE 'X' TO X_RECEIVERS-SNDEX. " EXPRESS DOCUMENT
    APPEND X_RECEIVERS.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    folder_id = 'OUTBOX'
    forwarder = x_forwarder
    object_fl_change = x_object_fl_change
    OBJECT_HD_CHANGE = X_OBJECT_HD_CHANGE
    object_id = x_object_id
    OBJECT_TYPE = X_OBJECT_TYPE
    OUTBOX_FLAG = 'X'
    OWNER = SY-UNAME
    store_flag = x_store_flag
    importing
    object_id_new = x_object_id_new
    sent_to_all = x_sent_to_all "May need to use
    TABLES
    OBJCONT = X_OBJCONT
    OBJHEAD = X_OBJHEAD
    objpara = x_objpara
    objparb = x_objparb
    RECEIVERS = X_RECEIVERS.
    Firstly SAP Mail
    A SAP mail is a mail internal to the SAP system. It is a very good forum to exchange information with other users. Using a SAP mail in ABAP code facilitates exchange of automatic messages at various stages of the business process. It is easy to use and saves many hassles involved in using workflows for exchanging messages.
    The ABAP code to send a sap mail is built around the FM SO_OBJECT_SEND which has the following pattern.
    call function 'SO_OBJECT_SEND'
    exporting
    EXTERN_ADDRESS = ' '
    FOLDER_ID = ' '
    FORWARDER = ' '
    OBJECT_FL_CHANGE = ' '
    OBJECT_HD_CHANGE = ' '
    OBJECT_ID = ' '
    OBJECT_TYPE = ' '
    OUTBOX_FLAG = ' '
    OWNER = ' '
    STORE_FLAG = ' '
    DELETE_FLAG = ' '
    SENDER = ' '
    CHECK_ALREADY_SENT = ' '
    importing
    object_id_new =
    sent_to_all =
    tables
    OBJCONT =
    OBJHEAD =
    OBJPARA =
    OBJPARB =
    receivers =
    PACKING_LIST =
    ATT_CONT =
    ATT_HEAD =
    NOTE_TEXT =
    exceptions
    active_user_not_exist = 1
    communication_failure = 2
    component_not_available = 3
    folder_not_exist = 4
    folder_no_authorization = 5
    forwarder_not_exist = 6
    note_not_exist = 7
    object_not_exist = 8
    object_not_sent = 9
    object_no_authorization = 10
    object_type_not_exist = 11
    operation_no_authorization = 12
    owner_not_exist = 13
    parameter_error = 14
    substitute_not_active = 15
    substitute_not_defined = 16
    system_failure = 17
    too_much_receivers = 18
    user_not_exist = 19
    x_error = 20
    others = 21.
    THANKS
    MRUTYUN

  • Issues sending iCloud mail via Mac Mail client

    I'm running OS X Yosemite and use the Mac Mail client to handle mail for my iCloud (mac.com), wish.edu, Gmail, and Outlook accounts.  All work fine and always have... until a few weeks ago.  I came to figure out that while sending email through my iCloud account will show up as a sent email in the sent folder (on my MacBook Pro as well as the web interface and IOS devices) the messages do not get received on the other end.  No error messages.  No returns.  Everything looks normal on my end but the emails never get delivered.
    I logged out of iCloud and logged back in.  I checks the outgoing server info and passwords. I restarted (a lot).  When I run tests, emails sent from the Mac Mail client on my laptop don't get there.  They do get received when sent via the iCloud web interface as well as from my iPhone and iPad.  I even downloaded PostBox and set it up with the exact same settings as Mac Mail, and it sends the iCloud mail just fine.
    This is driving me nuts.  I love Mac Mail, and have used it for years.  I don;t want to have to abandon it for this.  Help?

    Hi All,
        I have a requirement where i have to send the Pdf format of the billing document as a mail to the customer. And my client wants to send the mail via outlook so that they can modify the body content for each mail. Right now i have achieved the functionality of sending the mail with Pdf attachment form SAP.
    Can anyone please help me by providing some information about how to send mail from SAP via Outlook.
    Thanks!
    Praveenkumar T.

  • Error while sending a mail using UTP_MAIL package in Oracle 10g

    Hi,
    We are using UTP_MAIL package to send a mail from Oracle 10g.We have follwed the following steps ...
    SQL> connect sys/password as sysdba
    Connected.
    SQL> @$ORACLE_HOME/rdbms/admin/utlmail.sql
    Package created.
    Synonym created.
    SQL> @$ORACLE_HOME /rdbms/admin/prvtmail.plb
    Package body created.
    SQL > alter system set smtp_out_server = '<mail_server_ip:25>' scope =spfile;
    System altered..
    Now we try the code
    begin
    utl_mail.send(
    sender => 'sender's mail',
    recipients => 'receiver mail',
    CC => 'optional',
    subject => 'Testing utl_mail',
    message => 'Test Mail'
    end;
    But we get the following error...
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 97
    ORA-06512: at "SYS.UTL_SMTP", line 139
    ORA-06512: at "SYS.UTL_MAIL", line 405
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 2
    We also tried connecting to the mail server through telnet .But it is not getting connected..
    Please help us to solve the issue.

    From your own posting you may have the clue, if you try to access your mail server through telnet and it is not successful, it means the service is down or there are networking issues.
    On pre 10gR2 versions there was a bug 4083461.8. It could affect you if you are on 10gR1
    "Bug 4083461 - UTL_SMTP.OPEN_CONNECTION in shared server fails with ORA-29278 Doc ID:      Note:4083461.8"
    This was fixed on 10gR2 base and on 9.2.0.8.0
    ~ Madrid

  • Unity Connection Voice Mail Issue

    Hi,
    I have a weird Unity Connection Voice Mail issue and would appriciate any help i can get. Many thanks in advance.
    I have Unity connection 7.0 and CUCM 7.0 integrated in a lab enviroment and here is what happens.
    When I place a call internally say from 2001 to 2002, things work as expected, 2002 rings and it goes to voicemail where I can leave voicemail and listen to it from 2002.
    However, if I place call from the PSTN to the same number 2002 (or any other number in other sites etc) the call again rings in 2002 and goes to voicemail, unity cnx plays the greetings for 2002 and says record your message as usual. Everything up to point is fine, then when the time on the PSTN phone is showing around 14 seconds into the call unity starts playing, "to send this message press one", if I press one nothing happens.
    I have rebuilt unity and cucm, even just configured the bare minimum in the lab and still getting the same result. I tried calling from E1 connection and T1 connection but with the same results.
    I have run out of ideas...
    ===============================
    Here is a call trace from an internal call:
    CallData, 1, CallerId=2003, CalledId=2002, RedirectingId=2002, Origin=16, Reason=4, CallGuid=8B7859FD6C16417A9A07F507418DD25B, CallerName=, LastRedirectingId=2002, LastRedirectingReason=4, PortDisplayName=PhoneSystem-1-001
    Application, 1, 2003, AttemptForward
    State, 1, 2003, State - AttemptForward.cde!Dummy
    State, 1, 2003, Event is [NULL]
    Application, 1, 2003, PHTransfer
    State, 1, 2003, State - PHTransfer.cde!LoadInfo
    State, 1, 2003, Event is [TrueEvent]
    Application, 1, 2003, PHGreeting
    State, 1, 2003, State - PHGreeting.cde!PlayGreeting
    Display, 1, 2003, Call answered if needed
    Display, 1, 2003, Playing greeting for Subscriber:  hq2
    Display, 1, 2003, No DTMF received
    Display, 1, 2003, Playing greeting for Subscriber:  hq2
    State, 1, 2003, Event is [RecordMsgEvent]
    State, 1, 2003, State - PHGreeting.cde!RecordMsg
    State, 1, 2003, Event is [NULL]
    State, 1, 2003, State - PHGreeting.cde!RunEditMsg
    Application, 1, 2003, -->MessageEditing
    State, 1, 2003, State - MessageEditing.cde!CheckMsgMenuOpt
    State, 1, 2003, Event is [EditMessageMenuEvent]
    State, 1, 2003, State - MessageEditing.cde!PlayEditMenu
    State, 1, 2003, Event is [HangupEvent]
    State, 1, 2003, State - MessageEditing.cde!CheckMsgLength
    State, 1, 2003, Event is [ManyEvent]
    State, 1, 2003, State - MessageEditing.cde!SendMsg
    State, 1, 2003, Event is [TrueEvent]
    State, 1, 2003, State - MessageEditing.cde!ConfirmSend
    State, 1, 2003, Event is [HangupEvent]
    Application, 1, 2003, <--MessageEditing
    State, 1, 2003, Event is [HangupEvent]
    Display, 1, 2003, Idle
    Display, 1, , Dialing (MWI) '2002'
    Display, 1, , Idle
    and here is a trace from an external (PSTN) call
    Trying 142.100.64.13, 5000 ... Open
    CallData, 1, CallerId=911, CalledId=2002, RedirectingId=2002, Origin=16, Reason=4, CallGuid=CA3DFD90846C4FE7B0D68298A7698287, CallerName=PSTN Emergency, LastRedirectingId=2002, LastRedirectingReason=4, PortDisplayName=PhoneSystem-1-001
    Application, 1, 911, AttemptForward
    State, 1, 911, State - AttemptForward.cde!Dummy
    State, 1, 911, Event is [NULL]
    Application, 1, 911, PHTransfer
    State, 1, 911, State - PHTransfer.cde!LoadInfo
    State, 1, 911, Event is [TrueEvent]
    Application, 1, 911, PHGreeting
    State, 1, 911, State - PHGreeting.cde!PlayGreeting
    Display, 1, 911, Call answered if needed
    Display, 1, 911, Playing greeting for Subscriber:  hq2
    Display, 1, 911, No DTMF received
    Display, 1, 911, Playing greeting for Subscriber:  hq2
    State, 1, 911, Event is [RecordMsgEvent]
    State, 1, 911, State - PHGreeting.cde!RecordMsg
    State, 1, 911, Event is [NULL]
    State, 1, 911, State - PHGreeting.cde!RunEditMsg
    Application, 1, 911, -->MessageEditing
    State, 1, 911, State - MessageEditing.cde!CheckMsgMenuOpt
    State, 1, 911, Event is [EditMessageMenuEvent]
    State, 1, 911, State - MessageEditing.cde!PlayEditMenu
    State, 1, 911, Event is [HangupEvent]
    State, 1, 911, State - MessageEditing.cde!CheckMsgLength
    State, 1, 911, Event is [NULL]
    Application, 1, 911, <--MessageEditing
    State, 1, 911, Event is [NULL]
    State, 1, 911, State - PHGreeting.cde!AfterMsg
    State, 1, 911, Event is [NULL]
    Display, 1, 911, Idle

    Sounds like one way audio from PSTN to your Unity Connection, couple of things to check:
    1. ensure your protocols are bound properly on the GW, i.e. SIP/H323/MGCP
    2. Make sure IP routing is OK between Unity and the voice gateway
    HTH,
    Chris

  • E72- Unable to send e-mail from work mailbox

    I am unable to send e-mails from my work e-mail through my E72 although it receives perfectly. I have been in contact with Nokia via e-mail for the last 2 weeks and they have sent several suggestions to solve the issue but nothing is working. I have set-up my work e-mail on my husbands Blackberry  with the same settings and can receive and send perfectly. From that I conclude there is no issue with the settings I have or my work e-mail but with
    Nokia!! The latest 'help' I have received was to download a patch but I have no idea how to do this and get it onto my phone. So far Nokia have not replied to me.
    Any suggestions how to get this to work would be greatly appreciated

    If you're using a much older firmware, updating the phone would be a good idea.  Find the Software Updates section of nokia.com and type your phone model.  If you can't do an over-the-air update, download and install either the OVI Suite or the standalone Software Updater.  This may hard reset the phone, so back up anything important with OVI Suite first.
    Ignoring firmware for now, IMAP and URL's are like apples and oranges.  If you work for a small company, the server may always be called " mail.mycompany.com", but IMAP will never use an HTTP or HTTPS prefix.  URL's are typically associated with Microsoft Exchange servers.  Within the email program, check Options -> Settings -> Mailbox settings -> Mailbox settings -> Advanced mailbox settings.  Are "Outgoing email settings" set to something like
    User authentication: Same as for incoming
    Outgoing mail server: <compare to the setting for the Incoming server name; in a small company this will likely be the same>
    Since you're getting far enough for the mail sever to reject your connection, the other settings should be fine as-is.
    It does look like an authentication issue, so I'd say you're either hitting the wrong server or there's a bad username or password in there somewhere.  If the Blackberry works with an IMAP connection, then you should be using the same server name(s), and user/password.
    If all else fails, you can always try removing and readding the mailbox completely.  Choose Menu -> Applications -> Email -> Settings -> <highlight your work account> -> Options -> Remove mailbox.  And then set it up from scratch.  I hope that helps a little!

  • Using Windows: Send to -- Mail recipient, msg is sent OK, but not saved in Sent folder, with err msg about it. Sending from within Thunderbird: msg saved OK.

    When using Windows 8.1 context menu: Send to --> Mail recipient, message is sent OK, but not saved in Sent folder, with error massage: There was an error saving the message to Sent. Retry? (selecting Retry doesn't help).
    Similar issue happens when I open a ".eml" file and Reply of Forward it.
    When composing a new message from within Thunderbird, all is OK, including saving in the Sent folder.
    Already tried:
    Compacting the Sent folder.
    Compacting all folders of the account.
    Uninstall Thunderbird and install the latest version (31.6.0).

    When using Windows 8.1 context menu: Send to --> Mail recipient, message is sent OK, but not saved in Sent folder, with error massage: There was an error saving the message to Sent. Retry? (selecting Retry doesn't help).
    Similar issue happens when I open a ".eml" file and Reply of Forward it.
    When composing a new message from within Thunderbird, all is OK, including saving in the Sent folder.
    Already tried:
    Compacting the Sent folder.
    Compacting all folders of the account.
    Uninstall Thunderbird and install the latest version (31.6.0).

  • Sending external mail using SO_NEW_DOCUMENT_ATT_SEND_API1

    When i use this RFC by appending the internal table receiver with receiver: sapuser name and rec_type  B it triggers mail to the sap user login .But when i give external email address for receiver with rec_type 'U' it is not triggering any mail.Can anyone please tell me how to use this RFC in sending external mails??

    I went back and you are right "INT" was not the REC_TYPE it was the COM_TYPE.
    Sorry for any confusion caused.
    However,
    I suggest 2 more tests and then I give up and can not think about anything else.
    Try:
    #1
    REC_TYPE = 'X'.
    if it does not work.
    #2
    REC_TYPE = 'R'.
    Hope that will do the trick. I was trying a lot when I had to get that working some time ago.
    And surely the other colleagues point to something which must be setup as well. Transaction SCOT the SMTP settings.
    Furthermore there could be another issue. I remember that I worked at a client who had turned off the send settings on their email server. So SAP finished everything and handed the emails on to a mail server. The mail server had a setting to block any emails from the development environment.
    So that might be another cause of your issue.

Maybe you are looking for