Have issues with sending mail on WIFI?

Everything else seems to work on WIFI except sending mail, even receives fine.
It always sits in the que & then errors out?

What kind of WiFi, your home, or public? SMTP servers (outgoing mail servers) are picky about who you are and where you are sending from. This is to prevent spammers from using them by impersonating legitimate users. It's also why the iPhone lets you set up more than one SMTP server; if you have several it will try them in sequence until it finds one that works. But it gives each one a minute to try, so if you have several it can take a while to try them all.
If you can send over 3G its likely that you have your cellular carrier's SMTP server configured on the phone. If this is the only one it's also likely that it won't work on WiFi, because it will only work over the cellular carrier's network. For your home WiFi you need to have (or add) your ISP's SMTP server to the list of outgoing mail servers. Depending on the ISP this may or may not work over the cellular network or other WiFi networks outside your home network. Usually if the ISP's server requires a user ID and password it will work outside of their network.
When setting up an SMTP server user ID and password are listed as "optional". This may or may not be correct, depending on the SMTP server you are trying to use. It may be optional for the iPhone, but may be required by the SMTP server owner. So you need to check with the ISPs web site for how to configure the server.

Similar Messages

  • Issues with sending mail when using 2 email accounts - possible bug?

    Hi all,
    Having issues with trying to send email from the 3g iPhone. I have 2 IMAP acounts set up on the phone, one
    which works fine but when I try to create mail from the primary account as soon as I hit send it exits the mail program and goes back to the home screen.
    Both IMAP accounts have identical settings apart from the username and email address. On the primary account there is no sent messages folder on the iPhone whilst there is on the account that works. I've had a look in the advanced settings and it is programmed to store sent messages in the local sent folder which doesn't exist. I've tried selecting it to store in a IMAP folder as I thought maybe it was crashing as the local folder wasn't there but it has the same result.
    Have deleted the account and entered the settings back in again to try to coax it to create the local sent folder but cake up with the same problem.
    Suggestions are welcome.

    You have their SMTP servers mixed up, go to Mail>Preferences>Accounts>Outgoing Mail Server (SMTP), click on the server then choose Edit SMTP Servers and select the correct one for each account. Then check the Use Only This Server box

  • Issue with sending mail through java stored procedure in Oracle

    Hello
    I am using Oracle 9i DB. I created a java stored procedure to send mail using the code given below. The java class works fine standalone. When its run from Java, mail is sent as desired. But when the java stored procedure is called from pl/sql "Must issue a STARTTLS command first" error is thrown. Please let me know if am missing something. Tried the same code in 11.2.0.2 DB and got the same error
    Error:
    javax.mail.MessagingException: 530 5.7.0 Must issue a STARTTLS command first. va6sm31201010igc.6
    Code for creating java stored procedure: (T1 is the table created for debugging)
    ==================================================
    create or replace and compile java source named "MailUtil1" AS
    import java.util.Enumeration;
    import java.util.Properties;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    public class MailUtil1 {
    public static void sendMailwithSTARTTLS(String host, //smtp.projectp.com
    String from, //sender mail id
    String fromPwd,//sender mail pwd
    String port,//587
    String to,//recepient email ids
    String cc,
    String subject,
    String messageBody) {
    try{
    Properties props = System.getProperties();
    props.put("mail.smtp.starttls.enable", "True"); // added this line
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.user", from);
    props.put("mail.smtp.password", fromPwd);
    props.put("mail.smtp.port", port);
    props.put("mail.smtp.auth", "true");
    #sql { insert into t1 (c1) values ('1'||:host)};
    Session session = Session.getDefaultInstance(props, null);
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    #sql { insert into t1 (c1) values ('2')};
    InternetAddress[] toAddress = new InternetAddress[1];
    // To get the array of addresses
    for( int i=0; i < toAddress.length; i++ ) { // changed from a while loop
    toAddress[i] = new InternetAddress(to);
    //System.out.println(Message.RecipientType.TO);
    for( int i=0; i < toAddress.length; i++) { // changed from a while loop
    message.addRecipient(Message.RecipientType.TO, toAddress);
    if (cc!=null) {
    InternetAddress [] ccAddress = new InternetAddress[1];
    for(int j=0;j<ccAddress.length;j++){
    ccAddress[j] = new InternetAddress(cc);
    for (int j=0;j<ccAddress.length;j++){
    message.addRecipient(Message.RecipientType.CC, ccAddress[j]);
    message.setSubject(subject);
    message.setText(messageBody);
    message.saveChanges();
    #sql { insert into t1 (c1) values ('3')};
    Enumeration en = message.getAllHeaderLines();
    String token;
    while(en.hasMoreElements()){
    token ="E:"+en.nextElement().toString();
    #sql { insert into t1 (c1) values (:token)};
    token ="ConTyp:"+message.getContentType();
    #sql { insert into t1 (c1) values (:token)};
    token = "Encod:"+message.getEncoding();
    #sql { insert into t1 (c1) values (:token)};
    token = "Con:"+message.getContent();
    #sql { insert into t1 (c1) values (:token)};
    Transport transport = session.getTransport("smtp");
    #sql { insert into t1 (c1) values ('3.1')};
    transport.connect(host, from, fromPwd);
    #sql { insert into t1 (c1) values ('3.2')};
    transport.sendMessage(message, message.getAllRecipients());
    #sql { insert into t1 (c1) values ('3.3')};
    transport.close();
    #sql { insert into t1 (c1) values ('4')};
    catch(Exception e){
    e.printStackTrace();
    String ex= e.toString();
    try{
    #sql { insert into t1 (c1) values (:ex)};
    catch(Exception e1)
    Edited by: user12050615 on Jan 16, 2012 12:18 AM

    Hello,
    Thanks for the reply. Actually I have seen that post before creating this thread. I thought that I could make use of java mail to work around this problem. I created a java class that succesfully sends mail to SSL host. I tried to call this java class from pl-sql through java stored procedure. That did not work
    So, is this not supported in Oracle ? Please note that I have tested this in both 9i and 11g , in both the versions I got the error. You can refer to the code in the above post.
    Thanks
    Srikanth
    Edited by: user12050615 on Jan 16, 2012 12:17 AM

  • Issue with Sender Mail Adapter Configuration

    Hi All,
    We are PI 7.1.1 version. We are unable to see the following parameters in the sender Mail adapter:-
    Default XI Parameters : Default Interface Namespace and Default Interface Name.
    Also, we are geeting a Nullpoinetr exeception in RWB.
    Kindly provide your suggestions.
    Thanks & Regards,
    Navneeth K.

    Hi.
    I have faced the sane problem. My solution is to use DynamicConfigurationBean module:
    AF_Modules/DynamicConfigurationBean     Local Enterprise Bean
    with
    parameters:
    message.interface=<Your Interface Name>
    and
    message.interfaceNamespac=<Your Interface Namespace>
    Note that last parameter name is not interfaceNamespace but interfaceNamespac .
    It would be great if anyone will explane were Default XI parameters gone and how we can get them back.

  • Intermittent issues with sending mail on Mac Mail but not Thunderbird

    Some background: I have to use my ISP's SMTP server (AT&T) in order to send any mail out from my multiple email accounts. All emails are "validated" to use AT&T's SMTP server so there isn't any issue there. I cannot replicate this issue 100% of the time... it's about 20% of the time and has been experienced on both my Macs. When it does happen, outgoing email will either just hang (gear icon spins endlessly) or I get the SMTP server error message asking me to try another SMTP server (which I don't have).
    What is odd, I recently downloaded Thunderbird using the exact same settings as Mac Mail. Whenever Mac Mail hangs, I try sending an email from Thunderbird and it works just fine. I have also tried sending email from my iPhone while in "airplane mode" and it works just fine.
    I have performed connection doctor, keychain repair, deleted and reentered the SMTP info. So before I dump Mac Mail (which I'd rather not do) and go to Thunderbird, I would be curious if anyone has any suggestions?
    Thx!

    Now following another similar thread: http://discussions.apple.com/thread.jspa?threadID=2774396&start=0&tstart=0. Changed settings to MobileMe's IMAP default settings. Been working for 3-4 days. Hope it continues.

  • HT4864 I started have an issue with sending mail out of my me account.

    I use a PC. Some mail is not reaching the recipients that I have had no problem sending email and attachments to in the past. Showing as sent in my icloud sent folder. They are checking their junkfolders and it isn't getting stuck there . Never had problem sending to them previously. It doesn't seem to matter which service provider recipient is using.

    I'm getting the same error.  Everything is fine on my Mac.  But on my Windows laptop with Outlook, using SSL gives me that error.  Using TLS gives me error #0x80004005.
    And of course, stupid Outlook won't let you set up only the IMAP part, for some reason. 

  • I have a problem sending mail via smtp. I use a satellite system and the average return time for a ping is 675ms. Is this a problem with mail? If so can I change Mail to accept it. The problem also exists with Lion

    I have a problem sending mail via smtp. I use a satellite system and the average return time for a ping is 675ms. Is this a problem with mail? If so can I change Mail to accept it. The problem also exists with Lion and on both my MacPro and my wife's Imac. I also see my mailboxes randomly disconnecting and reconnecting. Any other ideas of a possible cause?

    I solved it myself, after the "note" which came back from FF/Mozilla just as I finished my message, commenting on what it was that my system had , I wnnt back to check my plug-ins etc. I downloaded the latest Java, BOTH 32bit AND 64 bit versions and latest Firefox.
    Now all is working.
    Thanks,
    B.

  • Hot mail is not working after firefox upgrade. I am using Firefox 12.0. I did not have issue with hotmail, but I am facing problem this week .

    I am using Firefox 12.0. I did not have issue with hotmail, but I am facing problem this week after firefox upgrade. After entering login the page freeze. I am not able to continue.
    I reviewed the thread. I am not using Foxit.
    I reviewed hot mail forum. They suggest firefox upgrade causes this issue.
    I tried after clearing my browser's cache and cookies. The situation remain same. Any idea?
    What is the workaround?

    Firefox 3.6 needs the Java Second Generation Plugin which comes with newer versions than 1.6.0_03 - update Java, the latest version is 1.6.0_22

  • Does any1 hav issues with not being able to send pic from the camera roll. I've already had issues with over exposure that the new update fixed but it left me with this issue.

    Since getting my iPhone 5 I've had camera issues. To start with it was over exposure, the camera was flashing too early and leaving me with dark pictures. After a failed reset I visited the apple store, where they told me it was a known problem and apple were working on a update to fix the issue and it was just a
    waiting game. Once the update was available I did it immediately and the problem seemed to be fixed. I've now noticed that from the camera roll I carnt send a picture to mms. It gives me the option but the screen completely freezes after I've chosen it. The only way to access my camera roll again is to completely close the camera roll down and reopen it. The strange thing it it will let me send it as an email and upload taught to Facebook etc just not as an mms. The other strange thing is if I go to msgs and add a photo I'm successful but if I try to edit the photo I want to send 1st then I get the same issue as the camera roll. I also have issues with the shutter taking ages to open. Is anyone else havin these issue before I go back to the apple shop. A complete reset hasn't worked

    Photo Stream only handles images and your videos are not uploaded or shared with other devices.
    Use iPhoto to import from your device. It can bring in the videos and image files.

  • OS X 10.10.1 Apple Mail reliability issue with Virgin Mail Servers

    Apple Mail(8.1) reliability issue with Virgin Mail Servers on my iMac and Laptop Pro with the new Yosemite update!  Spent 1.5hrs with the virgin team (thought we solved it by changing from Auto to one minute update) only to find on return I still have an issue with Mail!  On the iMac the account opens and I see all the mail arriving. When I switch over and the back, days of recent mail have disappeared?
    If I search for one I saw, It is found?
    On the Laptop Pro, its similar, but it also has a problem remembering the outgoing port no matter how often I save it keeps going back to port 143 and this makes the send fail each time?
    Will I have to move to another mail client or is their a fix coming?

    The last version of Mail for Tiger is v2.1.3 & there won't be any updates/upgrades.
    You might try the freeware mail app Thunderbird. http://www.mozillamessaging.com/en-US/thunderbird/ It's newer than Mail for Tiger.
    How Thunderbird 3 works on Mac OS X: Better than Apple Mail?
    http://blogs.techrepublic.com.com/mac/?p=409
     Cheers, Tom

  • Can  not send mail using wifi at a motel .I can receive mail fine

    can  not send mail using wifi at a motel .I can receive mail fine

    Hi there tamarafromdarien,
    You may find the troubleshooting steps for iCloud Mail in the article below helpful.
    iCloud: Troubleshooting iCloud Mail
    If you can't send mail in OS X Mail
    If you receive this alert or a similar alert when sending a message from your iCloud email address in OS X Mail:
    “This message could not be delivered and will remain in your Outbox until it can be delivered. The reason for the failure is: An error occurred while delivering this message via the smtp server: server name.”
    In OS X Mail, choose Preferences from the Mail menu.
    Click Accounts in the Preferences window.
    Select your iCloud account from the list of accounts.
    Click the Account Information tab.
    Choose your iCloud account from the Outgoing Mail Server (SMTP) pop-up menu. Example: “Derrick Parker (iCloud)”.
    Note: The Outgoing Mail Server (SMTP) menu also includes an Edit SMTP Server List command. If you choose this command, be aware that the iCloud SMTP server won't be among the servers that can be edited. This is normal.
    If you're attaching a large file
    Message attachments can't exceed the maximum size allowed by your email service provider or the recipient's email service provider. The maximum size varies by service provider. Try compressing the filebefore sending it, or send your message without the attachment to verify that there are no issues with sending.
    -Griff W.  

  • Having issues with Yahoo mail on ios4 on a 3GS

    Is anyone else experiencing issues with Yahoo mail on their 3GS after the upgrade to ios4?? Keep getting an imap server error, but gmail works fine.

    Same problem. I have two Yahoo! Mail accounts. One stopped sending mail, while the other was fine. (Both could receive, however.) To solve that, I deleted the problematic account from the phone and reinstalled it. It worked... until I synced by iPhone with iTunes. Now both Yahoo! Mail accounts will not work, and deleting them and reinstalling them does nothing.
    Apple had better fix this. (Or I'll whine louder.)

  • Iphone4 trouble with sending texts n wifi

    I am having trouble with my Iphone4. It can call and receive text but can not send them. It also has trouble connecting to wifi. Any suggestions? Thanks!

    Hi jillsmith802!
    Thanks for coming to the Apple Support Communities with your question! I have found an article that may help you resolve this issue. The article can be found here:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    If you are still having issues with sending SMS messages after following the steps in this article, I would recommend going to getsupport.apple.com to get in touch with our technicians, who will be able to help you resolve the issue.
    -Braden

  • Problem polling Inbox with Sender Mail adapter

    Hi,
    I have a funny problem with Sender Mail adapter (IMAP Protocol)
    It was working fine previously.
    Now, when I poll the Inbox, 2 things happen. After re-activation:
    1. If there is a new mail in the Inbox, the Communication channel marks the mail as read, but still keeps reading the same mail into XI.
    2. If there are no new mails in the Inbox, it reads the already read mails in the Inbox one by one. So all old mails start entering XI.
    This problem exists only with the Inbox. It works fine with other folders for the same mail ID.
    Any inputs as to why this is happening?
    Regards,
    Puloma.

    Hi,
    We re-started the server and problem was solved. But we don't know why the Adapter Engine was behaving erratically.
    Regards,
    Puloma.

  • Issue with Sender File FCC

    Hi Experts,
    I have an issue with Sender File FCC Adapter. The file being picked is of type TXT and it is tab seperated. The first line contains the field names and from next line onwards we have values for those fields.
    The field names and field values are tab seperated. Even inserting a single letter in some field value manually disrupts the whole setup & alignment of the TXT file and the Sender File CC is unable to pick up the file from the shared folder. If the first file is errorenous and after that a correct TXT file is posted, it fails to pick up the correct file as it is trying to pick the errorenous file first.
    The Error thrown is :
    "Conversion of file content to XML failed at position 0: java.lang.Exception: ERROR converting document line no. 2 according to structure 'ABCD':java.lang.Exception: ERROR in configuration / structure 'ABCD.': More elements in file csv structure than field names specified!"
    I have two questions:
    1. Is there a way to handle such a scenario? For e.g., the errornous TXT file gets picked but throws error in PI.
    2. Is there an alternative that the sender FCC channel picks up the correct files and filter out the errorneous ones ? ?
    Thanks,
    Arkesh

    Hi Arkesh,
    I think you are passing more number of fields than expected. Please check paramters defined and send the data accordingly.
    In the processing parameters tab of sender file adapter, you have an option called Archive faulty source files, below to that you would have option to enter the " Directory for Archiving files with Errors".
    I hope this helps you....
    Thanks,

Maybe you are looking for

  • Issue at VL10B (STO)

    Hi, While processing STO, I am done with the step ME21N Purchase order and i was able to generate the Order no. and processing further at step VL10B the particular document which was generated in earlier step was not able to view. I also found that i

  • Integrating India localization taxes and iStore module

    Hi Gurus, We are implementing iStore module in R12. We already have Oracle financials for india setups implemented. We would like to select the tax category in iStore UI and apply the taxes before booking the order. Is this kind of feature available

  • XGrid and Final Cut Pro

    hey peeps, I was wondering if Final Cut Pro would benifit from xgrid. We have 4 Mac Pros for the video guys and they would find it useful if they could share resources, especially if one individual is not using there machine to its full potential. If

  • Mac App Store troubles

    So earlier today I bought iMovie 11 for my Macbook and installed it and it had a problem where the video window was always black no matter what type of video or photo you tried to play. So I decided to clean install of Mac OS X. I finished the instal

  • Azure Billing Usage Extract File Query

    Hi, Please help us on my queries. Is there any way to uniquely identify the VM in Azure Usage files across all the subscriptions (downloaded from ea.windowsazure.com) Also in the usage files, is there any option to get usage details of all the resour