Domain isn't in my list of allowed rcpthosts (#5.7.1) - What's that?

I have 2 accounts: Business and Personal. Frequently mail cannot be sent on the Business account and a message appears 'The server response was: sorry that domain isn't in my list of allowed rcpthosts (#5.7.1)'. It can always be sent on my Personal account.
All settings have been checked with my server. They suggest I should use Entourage instead of Mail!
Any advice would be greatly appreciated.

Hi there...
I'm having exactly the same (infuriating) message coming back each time i try and send mail from any of my IMAP account. The problems seemed to start when i launched a separate IMAP account.
What did you do to solve it? Thunderbird works for sending but it doesn't sync with the mac address book which is uber annoying too...
All best,
Alistair

Similar Messages

  • Error 553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)

    I want send the email from oracle database.
    So I did the following steps
    1.@F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN\utlmail.sql
    2.@F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN\prvtmail.plb
    3.alter system set smtp_out_server = 'webmail.vilsoft.co.in:25' scope=both;
    4.exec utl_mail.send(sender=> '[email protected]',recipients=>'[email protected]',subject=>'test mail',message=>'hi');
    PL/SQL procedure successfully completed.
    So the mail is send to Destination Correctly.
    But When I want to send the mail from one server to another server So i execute the following query
    SQL> exec utl_mail.send(sender=> '[email protected]',recipients=>'[email protected]',subject=>'test mail',message=>'hi');
    then following error occurs....
    BEGIN utl_mail.send(sender=> '[email protected]',recipients=>'[email protected]',subject=>'test mail',message=>'hi'); END;
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 553 sorry, that domain isn't in my list of
    allowed rcpthosts (#5.7.1)
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 240
    ORA-06512: at "SYS.UTL_MAIL", line 424
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 1
    So Please help me to resolve this error ...

    It means that you are not allowed (by rules set on your SMTP server) to send emails to either vilsoft.co.in or gmail.com (most likely gmail.com - many companies do not allow employees to use gmail). Anyway, KB885 Try sending email separately to each address to finnd outt which one is causing issue.
    SY.

  • That domain isn't in my list of allowed rcpthosts (#5.7.1)

    I want send the email from oracle database.
    So I did the following steps
    1.@F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN\utlmail.sql
    2.@F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN\prvtmail.plb
    3.alter system set smtp_out_server = 'webmail.vilsoft.co.in:25' scope=both;
    4.exec utl_mail.send(sender=> '[email protected]',recipients=>'[email protected]',subject=>'test mail',message=>'hi');
    PL/SQL procedure successfully completed.
    So the mail is send to Destination Correctly.
    But When I want to send the mail from one server to another server So i execute the following query
    SQL> exec utl_mail.send(sender=> '[email protected]',recipients=>'[email protected]',subject=>'test mail',message=>'hi');
    then following error occurs....
    BEGIN utl_mail.send(sender=> '[email protected]',recipients=>'[email protected]',subject=>'test mail',message=>'hi'); END;
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 553 sorry, that domain isn't in my list of
    allowed rcpthosts (#5.7.1)
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 240
    ORA-06512: at "SYS.UTL_MAIL", line 424
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 1
    So Please help me to resolve this error ...
    Edited by: 901580 on Dec 21, 2011 2:42 AM

    alter system set smtp_out_server = 'webmail.vilsoft.co.in*:25'* scope=both;Value for smtp_out_server is wrong, 'webmail.vilsoft.co.in:25'
    Dont specify the port number. The correct value should be as below,
    alter system set smtp_out_server = 'webmail.vilsoft.co.in' scope=both;

  • 553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1) - Fix

    FYI
    A week ago I started getting this returned on emails to "some" addresses.
        [553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)]
    Fix for me: change my Outgoing SMTP from 25 to 587
    Default was 25, but for some reason 587 works
    (Saw 587 was used by different servers).
    Good luck.
    Paul

    I had an employee at my company with the same error message.  I talked her through setting up her email account in Outlook 2003.  As it turns out the problem was simply that she did not check the "Use same settings as my incoming mail
    server" under the "Outgoing Server" tab as required by our provider.  I know it's not the same for all, but it does help to make sure all the settings are correct before bashing your head into the wall, trying to figure it out (like I almost did).
    this works for me.
    thank you.

  • HT4993 FBAPie Error Domain 522 popped up on my screen after I opened Facebook. What does that mean?

    FBapie error domain 522 pops up on the screen when I open Facebook. What does that mean?

    Read https://discussions.apple.com/thread/4389267?start=0&tstart=0

  • Javax.mail.SendFailedException: 553 sorry, that domain isn't in my list of

    i have put all the lines in the code required to set the server name and the username and the password but it still gives me the error. i have the following code to send the mail.
    package com.wesra.mail;
    import java.io.PrintStream;
    import java.util.Hashtable;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class SendEmail extends Authenticator
    InternetAddress from = null;
    InternetAddress to = null;
    InternetAddress cc = null;
    InternetAddress bcc = null;
    String subject = null;
    Object body = null;
    Message msg = null;
    static Session session = null;
    String msgText = null;
    Properties prop = null;
    MimeMultipart mimemultipart = null;
    public SendEmail()
    from = null;
    to = null;
    cc = null;
    bcc = null;
    subject = null;
    body = null;
    msg = null;
    msgText = null;
    prop = null;
    mimemultipart = null;
    msgText = new String("");
    prop = System.getProperties();
    mimemultipart = new MimeMultipart();
    public void setDetails(String s, String s1, String s2, String s3, String s4, String s5)
    throws Exception
    from = new InternetAddress(s1);
    to = new InternetAddress(s);
    cc = new InternetAddress(s2);
    bcc = new InternetAddress(s3);
    subject = new String(s4);
    body = new MimeBodyPart();
    prop.put("mail.smtp.host", s5);
    public boolean sendEmail(String s, int i)
    throws Exception
    session = Session.getDefaultInstance(prop, null);
    MimeMessage mimemessage = new MimeMessage(session);
    MimeMultipart mimemultipart1 = new MimeMultipart();
    if(i > 1)
    mimemessage.setRecipient(javax.mail.Message.RecipientType.CC, cc);
    if(i > 2)
    mimemessage.setRecipient(javax.mail.Message.RecipientType.BCC, bcc);
    mimemessage.setRecipient(javax.mail.Message.RecipientType.TO, to);
    mimemessage.setSubject(subject);
    msgText = s;
    MimeBodyPart mimebodypart = new MimeBodyPart();
    mimebodypart.setContent(msgText, "text/html");
    mimemultipart1.addBodyPart(mimebodypart);
    mimemessage.setContent(mimemultipart1);
    mimemessage.setFrom(from);
    System.out.println("Message is being sent...");
    Transport.send(mimemessage);
    System.out.println("Message Sent Successfully");
    return true;
    i write the following lines to call the code.
    se1.setDetails(to,from,to1,to2,subject,server);// this is called with the appropriate parameters with the server being either wesra.com,wesra.in or nmims.edu but none of that works.please check it and let me know what is wrong.
    boolean sentstatus=se1.sendEmail(msgText1,number);

    It sounds like a configuration problem with your SMTP server. Perhaps the machine from which you're connecting to the mail server isn't allowed to send mail to other domains. That'll be something you need to fix on the mail server.
    Anyway, I'd suggest plugging that error message into Google... you'll get hundreds of matches.

  • "that domain isn't allowed to be relayed thru this MTA " : Problem and fix

    I am using Java mail to send emails out at work through my web email account.
    Sometimes it works fine, but after a while, it gives me the following error :
    javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 553 sorry, that domain isn't allowed to be relayed thru this MTA (#5.7.1)
    at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1196)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:584)
    I waited for a few days, and tried one more time, it worked again for a few emails, then it failed again. I went into my Thunderbird where I had this web account set up so I can both send and receive emails, I tried to send out an email, it worked, then I used my Java email program to send email from work through this web account, it works again. It seems Thunderbird can fix the problem for me. Does any one know how I can fix it in Java so I don't have to start Thunderbird and send an email to fix the error ?
    Frank

    You're confusing things here by using your ISP's mail server at work instead
    of your work mail server.
    Still, your ISP's mail server is probably imposing similar restrictions as your
    work mail server. It doesn't want to allow just anyone to connect and send
    mail to anywhere. That's how spam is sent. Most people control this by requiring
    you to login to the SMTP server before it will let you send mail. Some people use
    the hack of requiring you to login to the POP3 server first, and then it will allow
    you to connect to the SMTP server without logging in and will allow you to send
    mail.
    You seem to be missing some basic understanding of JavaMail and what it
    means to "connect to a mail server". Maybe you don't understand the difference
    between a Store and a Transport. POP3 is a Store protocol. SMTP is a Transport
    protocol.
    The JavaMail demo directory is full of programs that should how to connect to
    a mail server (Store) to read messages, the most useful of which is the msgshow.java
    demo program. JavaMail doesn't require you to wire in knowledge of the Store
    protocol. You can write a program that can connect to any type of Store, and then
    tell it at runtime to use the "pop3" protocol. Looking at msgshow.java, if you pass
    "pop3" as the protocol argument ("-T pop3"), it will connect to a POP3 mail server.

  • Server error: 553 sorry, that domain isn't allowed to be relayed thru this MTA

    Jane Doe is trying to deliver an email to Nancy Smith. The email which Jane has written, has an Excel file (.xlsx) attached to it. Jane is with Domain A and Nancy is with Domain Z. Both Jane & Nancy are on Exchange 2010. Jane is receiving the following message when trying to deliver email to Nancy.TextYour message did not reach some or all of the intended recipients. Subject: Fuel Recon August 2015.xlsx Sent: 8/3/2015 12:55 PMThe following recipient(s) cannot be reached: 'Username' on 8/3/2015 12:55 PM Server error: '553 sorry, that domain isn't allowed to be relayed thru this MTA (#5.7.1)' '[email protected]' on 8/3/2015 12:55 PM Server error: '553 sorry, that domain isn't allowed to be relayed thru this MTA (#5.7.1)'
    I'm not entirely sure that I understand this error message. I am trying to do what I can with Google, and put out...

    Hey SpiceHeads!
    There are 42 good reasons to use hyperconverged infrastructure, but we’ll focus on a trilogy: scalability, built-in high availability/disaster recovery, and affordability. And with the elimination of storage protocols, you won’t even need a babelfish to make your environment work together. Join me and the Scale Computing team tomorrow (Thursday August 6th @ 1PM CT) for "The Hitchhiker's Guide to Virtualization and Hyperconvergence." Say "so long and thanks for all the fish" to old-school virtualization for good! As a Live event bonus we will be giving away a ton of great prizes two attendees will win a Pro Electronics repair kit and one will win a Ology Drone with Camera! So, DON'T Panic, grab your towel, and SIGN UP NOW! Contest is open to SpiceHeads in the US & CA. Contest winners will be announced here in this post...

  • How to add Check box to a static Drop down list (bases on a selection list) and allow mulity select in it?

    Dear All,
    I created a text field in my project (Light switch 201, C#), this text field has a static list which I filled manually. when I click in this text box I get a dropp down list which allow me to chose only one value from it.
    Now what I want to do is to add a check box in this drop down list and allow mulity selection from this list. My list looks as follow:
    Can anyone help me :) ? 
    Thanks all,
    Zayed

    Something like this:
    http://www.codeproject.com/Tips/452756/Add-checkbox-inside-combobox-in-Silverlight

  • Parental Controls are not working correctly.  Websites I've listed under Allow Access are still blocked.  How can I fix this?

    Parental Controls are not working correctly.  There are websites I've listed under Allow Access, however they are still blocked. - such as:  Yahoo mail and USAA banking.  How can I fix this?

    Hendry
    Just thought I'd let you know.  Our suspicions were correct, it was the OS. After I installed Snow Leopard (10.6.8) all the problems were corrected.  I also updated the RAM from 1 gb to 6 gb. The mac is working all around better. Sorry it took so long to get back to everyone. My superdrive had pooped out. Rather than replace it I got an external drive from OWC connected with firewire 800.  So far everything is running very well, as far as I can tell this external drive is better than the original superdrive. My superdrive has always acted funny, infact I returned the first mac I got after a week because its superdrive was also malfunctioning. Anyway, all that to say everything seems to be fully functioning again.
    Roy
    Re: Function keys are not working correctly 

  • HT3702 My itunes isn't allowing me to purchase the beyonce album. It just sends me over to the support website. What does that mean?

    My itunes isn't allowing me to purchase the beyonce album. It just sends me over to the support website. What does that mean?

    If you mean that you are getting a message to contact iTunes Support then you can do so via this link and ask them why the message is appearing (we are fellow users here on these forums, we won't know why) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Where is the list of allowed applets stored?  Can this be pre-filled?

    The new version (update 11) now asks for permission to run appllets by default.
    The dialog has a checkbox to allow this applet to run in the future.
    Where is this information stored?
    Is it possible to pre-fill it with a list of allowed applets at installation time?

    The Safari list is used to spoof weird sites that can't render Safari properly. There's no way you should want to change it. There's nothing connected with your Firefox deletion.

  • Why Georgia isn't on the listing of countries for payment ?

    Hello,
    Why Georgia isn't on the listing of countries for payment ?
    And how I can register my AmEx(Bank of Georgia) cart with georgian billing address?
    Thank you in advance,
    Regards,
    Message was edited by: badri sepashvili

    Thank you,
    You are right of course, but, unfortunately I can't ask about this situation to Apple employees.
    There is no live chat, here is only support communities on Apple's site.
    I would like to know it's a problem of georgian banks or Apple's business strategy ?
    Regards

  • Adobe reader 10 can not be put on the list of allowed programs in Windows 7 firewall

    The newly installed Adobe 10.1.2 is not on the list of allowed programs to pass through the Windows7 firewall. Manual adding does not work. The Windows 7 instructions say: select a program you want to add or click 'browse'to find one that is not listed, and then click 'ok' The browse button transfers to windows explorer, I find an Adobe program under Program Files (86x) but I can not transfer the path into the window of allowed programs.

    ich glaube ich kann deutsch schreiben. Fällt mir leichter. Ich will den neuen Adobe Reader 10.1.2 in die Liste der erlaubten Programme bei  Windows7 Firewall eintragen, weil ich sonst bei URL's im Internet, die mit .pdf aufhören, nichts sehe. Windows explorer steht auch auf dieser Liste der erlaubten Programme und deswegen funktioniert er auch mit URLs die mit .pdf aufhören. Ich muss aber Mozilla Firefox zum Surfen im Internet verwenden, weil meine Lesezeichen alle von diesem Browser verwaltet werden.

  • Firefox is blocking access to my Picassa albums and I can't post new pictures to it. It just started two days ago. I looked at the opitions and my picassa site is listed as ALLOW but it doesn't work. Can someone tell me a solution? Thanks.

    I use Firefox to load pictures into my Picassa Albums. Two days ago when I tried to make a new album, Firefox repeatedly block Picassa. I checked in the Options box and my Picassa site was listed to ALLOW but it will not allow. How do I fix this problem so I can use Picassa?
    Thanks,
    David

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

Maybe you are looking for

  • IPad + Headphones with Remote

    I bought a pair of headphones with remote on amazon, apple original, new. I think they are the 3rd gen headphones. I can't get the remote to work, I don't know if it incompatible but the apple site doesn't specify as far as I can find. Any help or in

  • Problem with announcing a MobileMe gallery

    I got small problem for some time: Every time I hit the "announce" (don't know if it is called exactly like that, because i'm using the German Version) button, iPhoto and mail don't do anything at all. I tried to delete the preferences, once it seeme

  • To sign together with signature image

    I want to sign conventionally by including my signature image. However, when I choose to configure signature appearance, Adobe Reader XI cannot import graphics in jpg, only choice is pdf and signature image came out truncated! So, is it confirm that,

  • Weird: safari crashes admin acount not others after reinstall

    Hi, got a problem. giving my old G4 400 to my brothe. rather than go through all of the files I just wiped the drive. Then reinstalled my version of 10.2. repaired disk permissions. updated per disks to 10.3. repaired disk permissions. web update to

  • Lost e-mail message -  iPad2 3G

    I composed an e-mail message on my iPad2 3G with 3G mode active and WiFi off.  After completing the message, I entered the To and Bcc fields, then clicked send. The mail program indicated 'sending' in the status area at lower left.  After a long time