Need help, can't send mail from webmail but can from clients

Just got Lion Server up and running but i'm having a problem sending mail via the webmail (Roundcube). I keep getting this error
SMTP error (250): Authentication failed.
The problem is that no one needs to be authorized to send mail. All my clients work fine sending from their mail client software. It seems that roundcube wants to autheticate in some form and doesn't know it doesn't need to. But where do I change that setting??

i noticed this in my logs, so I'm sure roundcube is trying to access the server using authentication, but I don't know how to change it.
[29-Dec-2011 14:27:42] SMTP server does not support authentication ():
[29-Dec-2011 14:27:42 -0800]: SMTP Error: SMTP error: Authentication failure: SMTP server does not support authentication (Code: ) in /usr/share/webmail/program/steps/mail/func.inc on line 1502 (POST /webmail/?_unlock=loading1325197839437?_task=mail&_action=send)
I went to the line 1502 but it doesn't look like I should change anything there.

Similar Messages

  • Can't send mail, says offline, but can receive

    I can receive mail on my .mac account but when I try to send anything, it says I am offline. How do you contact anyone at Apple? We held for about 45 minutes last night and still couldn't get through. Apple needs to do something about their customer service for those of us who don't live close enough to an Apple Store to be able to visit the genius bar.

    I'm having the same problem, and it's making me crazy. Since I installed 10.5.6, many things gradually have gone wrong. Mail started hanging and my wireless network became very unstable. To try to "fix" Mail, I trashed Mail's prefs and restarted. Then I input my settings and got the result that I can receive mail but cannot send it. I have tinkered with my settings ad nauseam, with no improvement. Since all three of my computers sync using Mobile Me, now I cannot send from any of them.
    I certainly would appreciate any input or experience anyone can share.

  • Can't send mail using webmail on Mac OS X Server 10.4

    Could someone help me figure out why I can't send email via webmail on Mac Mac OS X Server 10.4. I tried in and out of my LAN but it will not work. I am pretty sure that it's no firewall issue because it won't even work inside the LAN. Another thing I have considered is DNS issues. But my SMTP and POP3 works fine. Don't they use same DNS mail exchange record. Or should I ask my ISP to create a new record for webmail?

    Hi,
    Thanks once again for your help. The log details is shown below;
    Nov 6 14:27:07 mail postfix/smtpd[336]: connect from localhost[127.0.0.1]
    Nov 6 14:27:07 mail postfix/smtpd[336]: warning: Illegal address syntax from localhost[127.0.0.1] in MAIL command: [email protected]
    Nov 6 14:27:07 mail postfix/smtpd[336]: lost connection after MAIL from localhost[127.0.0.1]
    Nov 6 14:27:07 mail postfix/smtpd[336]: disconnect from localhost[127.0.0.1]

  • I need help with apex send mail

    I have created a apex send email, I tried to make it work I need help
    DECLARE
    v_Message VARCHAR2(4000);
    v_MsgHTML VARCHAR2(4000);
    v_CRLF VARCHAR2(6) := CHR(13) || CHR(10);
    begin
    v_Message := 'Your request has been sent to the Help Desk team:' ||
    v_CRLF || v_CRLF;
    v_Message := v_Message || 'YOUR_NAME: ' || :P10_YOUR_NAME || v_CRLF;
    v_Message := v_Message || 'COMPANY_Name: ' || :P10_COMAPNY_NAME || v_CRLF;
    v_Message := v_Message || 'ADDRESS: ' || :P10_ADDRESS || v_CRLF;
    v_Message := v_Message || 'CITY: ' || :P10_CITY || v_CRLF || v_CRLF;
    v_Message := v_Message || 'STATE: ' || :P10_STATE || v_CRLF;
    v_Message := v_Message || 'ZIP: ' || :P10_ZIP || v_CRLF;
    v_Message := v_Message || 'DAYTIME_PHONE: ' || :P10_DAYTIME_PHONE || v_CRLF;
    v_Message := v_Message || 'EVENTING_PHONE: ' || :P10_EVENTING_PHONE || v_CRLF || v_CRLF
    v_Message := v_Message || 'MOBILE_PHONE: ' || :P10_MOBILE_PHONE || v_CRLF;
    v_Message := v_Message || 'FAX: ' || :P10_FAX || v_CRLF;
    v_Message := v_Message || 'EMAIL_ADDRESS: ' || :P10_EMAIL_ADDRESS || v_CRLF;
    v_Message := v_Message || 'OCCASION: ' || :P10_OCCASION || v_CRLF || v_CRLF
    v_Message := v_Message || 'TYPE_OF_PARTY: ' || :P10_TYPE_OF_PARTY || v_CRLF;
    v_Message := v_Message || 'DATE_OF_EVENT: ' || :P10_DATE_OF_EVENT || v_CRLF;
    v_Message := v_Message || 'TIME_OF_EVENT: ' || :P10_TIME_OF_EVENT || v_CRLF;
    v_Message := v_Message || 'LOCATION_OF EVENT: ' || :P10_LOCATION_OF EVENT || v_CRLF || v_CRLF
    v_Message := v_Message || 'ESTIMATED_GUEST_COUNT: ' || :P10_ESTIMATED_GUEST_COUNT || v_CRLF;
    v_CRLF := '
    v_MsgHTML := 'Your request has been sent to the Help Desk team:' ||
    v_CRLF || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'YOUR_NAME: ' || :P10_YOUR_NAME || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'COMPANY_Name: ' || :P10_COMAPNY_NAME || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'ADDRESS: ' || :P10_ADDRESS || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'CITY: ' || :P10_CITY || v_CRLF || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'STATE: ' || :P10_STATE || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'ZIP: ' || :P10_ZIP || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'DAYTIME_PHONE: ' || :P10_DAYTIME_PHONE || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'EVENTING_PHONE: ' || :P10_EVENTING_PHONE || v_CRLF || v_CRLF
    v_MsgHTML := v_MsgHTML || 'MOBILE_PHONE: ' || :P10_MOBILE_PHONE || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'FAX: ' || :P10_FAX || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'EMAIL_ADDRESS: ' || :P10_EMAIL_ADDRESS || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'OCCASION: ' || :P10_OCCASION || v_CRLF || v_CRLF
    v_MsgHTML := v_MsgHTML || 'TYPE_OF_PARTY: ' || :P10_TYPE_OF_PARTY || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'DATE_OF_EVENT: ' || :P10_DATE_OF_EVENT || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'TIME_OF_EVENT: ' || :P10_TIME_OF_EVENT || v_CRLF;
    v_MsgHTML := v_MsgHTML || 'LOCATION_OF EVENT: ' || :P10_LOCATION_OF EVENT || v_CRLF || v_CRLF
    v_MsgHTML := v_MsgHTML || 'ESTIMATED_GUEST_COUNT: ' || :P10_ESTIMATED_GUEST_COUNT || v_CRLF;
    HTMLDB_MAIL.SEND(
    P_TO => '[email protected]',
    P_FROM => :P16_EMAIL,
    P_BODY => v_message,
    P_BODY_HTML => v_MsgHTML,
    P_SUBJ => :P16_CHURCH_NAME || ' Help Request');
    APEX_MAIL.PUSH_QUEUE;
    end;
    YOUR_NAME,
    COMPANY_NAME,
    ADDRESS,
    CITY,
    STATE,
    ZIP,
    DAYTIME_PHONE,
    EVENTTIME_PHONE,
    MOBILE_PHONE,
    FAX,
    EMAIL_ADDRESS,
    OCCASION,
    TYPE_OF_PARTY,
    DATE_OF_EVENT,
    TIME_OF_EVENT,
    LOCATION_OF EVENT,
    ESTIMATED_GUEST_COUNT

    DECLARE
    v_message VARCHAR2 (4000); v_msghtml VARCHAR2 (4000); v_crlf VARCHAR2 (6) := CHR (13) || CHR (10);BEGIN v_message := 'Your request has been sent to the Help Desk team:' || v_crlf
    || v_crlf; v_message := v_message
    || 'YOUR_NAME: ' || :p10_your_name
    || v_crlf; v_message := v_message
    || 'COMPANY_Name: ' || :p10_comapny_name
    || v_crlf; v_message := v_message
    || 'ADDRESS: ' || :p10_address
    || v_crlf; v_message := v_message
    || 'CITY: ' || :p10_city
    || v_crlf
    || v_crlf; v_message := v_message
    || 'STATE: ' || :p10_state
    || v_crlf; v_message := v_message
    || 'ZIP: ' || :p10_zip
    || v_crlf; v_message := v_message
    || 'DAYTIME_PHONE: ' || :p10_daytime_phone
    || v_crlf; v_message := v_message
    || 'EVENTING_PHONE: ' || :p10_eventing_phone
    || v_crlf
    || v_crlf; v_message := v_message
    || 'MOBILE_PHONE: ' || :p10_mobile_phone
    || v_crlf; v_message := v_message
    || 'FAX: ' || :p10_fax
    || v_crlf; v_message := v_message
    || 'EMAIL_ADDRESS: ' || :p10_email_address
    || v_crlf; v_message := v_message
    || 'OCCASION: ' || :p10_occasion
    || v_crlf
    || v_crlf; v_message := v_message
    || 'TYPE_OF_PARTY: ' || :p10_type_of_party
    || v_crlf; v_message := v_message
    || 'DATE_OF_EVENT: ' || :p10_date_of_event
    || v_crlf; v_message := v_message
    || 'TIME_OF_EVENT: ' || :p10_time_of_event
    || v_crlf; v_message := v_message
    || 'LOCATION_OF EVENT: ' || :p10_location_of_event
    || v_crlf
    || v_crlf; v_message := v_message
    || 'ESTIMATED_GUEST_COUNT: ' || :p10_estimated_guest_count
    || v_crlf;
    v_crlf := '
    '; v_msghtml := 'Your request has been sent to the Help Desk team:' || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'YOUR_NAME: ' || :p10_your_name
    || v_crlf; v_msghtml := v_msghtml
    || 'COMPANY_Name: ' || :p10_comapny_name
    || v_crlf; v_msghtml := v_msghtml
    || 'ADDRESS: ' || :p10_address
    || v_crlf; v_msghtml := v_msghtml
    || 'CITY: ' || :p10_city
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'STATE: ' || :p10_state
    || v_crlf; v_msghtml := v_msghtml
    || 'ZIP: ' || :p10_zip
    || v_crlf; v_msghtml := v_msghtml
    || 'DAYTIME_PHONE: ' || :p10_daytime_phone
    || v_crlf; v_msghtml := v_msghtml
    || 'EVENTING_PHONE: ' || :p10_eventing_phone
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'MOBILE_PHONE: ' || :p10_mobile_phone
    || v_crlf; v_msghtml := v_msghtml
    || 'FAX: ' || :p10_fax
    || v_crlf; v_msghtml := v_msghtml
    || 'EMAIL_ADDRESS: ' || :p10_email_address
    || v_crlf; v_msghtml := v_msghtml
    || 'OCCASION: ' || :p10_occasion
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'TYPE_OF_PARTY: ' || :p10_type_of_party
    || v_crlf; v_msghtml := v_msghtml
    || 'DATE_OF_EVENT: ' || :p10_date_of_event
    || v_crlf; v_msghtml := v_msghtml
    || 'TIME_OF_EVENT: ' || :p10_time_of_event
    || v_crlf; v_msghtml := v_msghtml
    || 'LOCATION_OF EVENT: ' || :p10_location_of_event
    || v_crlf
    || v_crlf; v_msghtml := v_msghtml
    || 'ESTIMATED_GUEST_COUNT: ' || :p10_estimated_guest_count
    || v_crlf;
    HTMLDB_MAIL.SEND(
    P_TO => '[email protected]',
    P_FROM => '[email protected]',
    P_BODY => v_message,
    P_BODY_HTML => v_message,
    P_SUBJ => 'Application Comments!!');
    APEX_MAIL.PUSH_QUEUE;
    end;

  • Cannot send mails via IMAP but can receive mails

    HI All
    Having Exchange 2010 SP2 on standalone box on W2K8R2-std sp1
    We enabled IMAP and POP3 for our user base who do not have Outlook or are facing issues with active sync. 
    mailbox gets configured however none of mails are sent via IMAP  they remain stuck in user outbox only.
    They can receive mails but can't send. we tried configuring same users on Outlook and activesync and it worked. 
    We were surprised with some mis-configuration at IMAP end but could't get to root of it. Any idea what could be an issue????
    for imap testing we tried Zimbra 7.2.3 on windows 7 pro, Windows Mail app in windows 8.1. IMAP in windows phone 8
    Have enabled IMAP and pop3 logging but couldn't interpret it.
    Cheers VP

    Hi vp89,
    Based on my knowledge, POP3 and IMAP cannot be used to send messages.
    E-mail applications that use POP3 and IMAP4 to send messages rely on the SMTP protocol to send messages.
    The connector for receiving e-mail submissions from client applications that use POP3 or IMAP4 is created automatically on every Hub Transport server.
    We need a Send Connector.
    More details in the following articles:
    Understanding POP3 and IMAP4
    http://technet.microsoft.com/en-us/library/bb124107(v=exchg.141).aspx
    Create an SMTP Send Connector
    http://technet.microsoft.com/en-us/library/aa997285(v=exchg.141).aspx
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Can't send mail - says gmail server can't be found? was fine yesterday

    mac air wont send mail - says it cant connect the gmail server?

    it is also showing error 54:conection reset by peer ??

  • I can't send files through bluetooth, but can receive them.

    I can't send files through the bluetooth on my imac 20" any longer...
    I can toggle through all the bluetooth-options though.

    i have exactly the same problem with my macbook, and no solution either...

  • Can't send via gmail @ work, but fine from home

    I have no trouble sending gmail mail via the Mail app at home, but mail will not send at work. I am guessing that the port number could be an issue, but this is not editable as far as I can tell, and even if it was I wouldn't know what port to change it to.
    Any ideas? My current work-around is to use the gmail web page at work to manage emails.

    Your assumption is correct. Your company must be blocking the ports to prevent you from sending outgoing emails, but I'd guess you have no trouble receiving emails at all, and you use proxy script on your web browser? I have same situation at work myself.
    My work around? Use my verizon wifi.

  • Updated Firefox and now can't send messages in Facebook but can if I use other Internet Applications

    Since the update of Firefox, when I try to send messages to friends in Facebook I get an error message stating that "message failed to send". Have not been able to find a work around. Have cleared History (Cookies and Cache). Facebook messages work on our other laptop which has not been updated and if I use other Internet applications like IE, My Opera etc

    Hi,
    You can try updating Java to the latest (7u9) and restart Firefox: http://www.oracle.com/technetwork/java/javase/downloads/jre7u9-downloads-1859586.html
    Please make sure to choose either '''Windows x86 Offline''' or '''Windows x86 Online'''.
    If problems persist you can then reset Firefox and start afresh.
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    If you would like to take a listing of the add-ons, important preferences/settings etc. to quickly replicate the previous profile, please open '''Troubleshooting Information''' via '''Help''' ('''Alt''' + '''H'''), '''Copy all to clipboard''' and paste it into MS Office Excel, or OpenOffice/LibreOffice Calc, or notepad. However, it would be a good idea to check for the existence of the issue immediately after the reset.

  • Can't send texts or call, but can use 3G?

    I got an iPhone 4s a few months ago and it's locked to EE. Everything has been fine but today it won't let me send texts or call someone, even if they also have an iPhone and I'm connected to the internet. I have signal and 3G is working. Can anyone tell me how to fix this?

    Try a reset: hold down the home button along with the sleep/wake button until you see the apple, then let go.

  • Can't send emails in macmail but can receive them for some accounts

    I have 3 email accounts through BT. My BTYahoo mail is now receiving and sending through macmail after reading the forum thanks. However my me.com account and 123-reg account (business) won't send as all outgoing servers are offline and no matter what I do they won't change. I have removed the accounts and set them up again to no avail. I have OS 10.8. Any ideas gratefully recieved.

    Have you checked the tick box in the advanced outgoing mail setup screen to use SSL? This should use a different TCP port than standard SMTP that many ISPs block unless you are using the ISP servers.

  • HT4519 I can't send mail from iPhone 4 checked settings and SMTP please can you help

    I can't send mail from iPhone I have checked the settings etc but still no joy.
    Can you help,please thanks.

    Follow the steps in the article below.
    iOS Unable to send or receive mail:
    http://support.apple.com/kb/ts3899
    Hope this helps

  • Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!! :(

    Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!!

    Hi
    You need to check with your ISP whether or not the send mail server (SMTP) requires a password.  Some do, but many do not.  When you know the correct password to send mail, then you need to tell Mail as follows:
    Mail menu > Preferences > Accounts > Select the account
    Click on the Outgoing Mail Server (SMTP) combo box, and select Edit SMTP Server List...
    In the Account Information tab put the server name
    In the Advanced Tab, set up the authentication information from your ISP.
    Good luck
    Bob

  • I can't send mails from my outlook 2010 but can receive, I can't send mails from my outlook 2010 but can receive

    I can't send mails from my outlook 2010 but can receive, please help.

    Thank you so much for your time and help Csound1 I really appreciate it.
    Mac mail works perfectly fine so I don't want to screw it up by altering anything there.
    However, I've checked to make sure I didn't miss anything on Outlook, but it still won't send messages. I don't know if I need to fill the "Unqualified domain" field?

  • For some reason yesterday and today I can not send mail using the icloud website and help?

    From some reason I can not send emails using the icloud website.  Not sure why any help

    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.  

Maybe you are looking for

  • PSU for 11.2.0.2.2

    Apologies if this is a stupid question, but... I'm looking to upgrade my 11.2.0.2 RDBMS and GI home to the latest PSU (11.2.0.2.2). However, I'm a bit confused as to which patch I need to apply. The 11.2.0.2.2 PSU for RDBMS is 11724916 The 11.2.0.2.2

  • ALV refresh with the Old Data

    Hi All, I have a question with OO ALV. I have an Editable ALV output which contains around 10 fields. In the output the User can Edit/Insert/Delete the Records, and on the application tool bar I have a button (CHANGE)by which the user can swtich betw

  • Establish link between Billing document and material document

    Hi All, I have billing document for some materials created using the FM BAPI_BILLINGDOC_CREATEMULTIPLE and I have created the material document for the corresponding materials using the FM BAPI_GOODSMVT_CREATE. Both these documents have been created

  • Saving sub-presets in Photoshop CC?

    International paper sizes only exist up to A3. I made presets A0-A2, but can I save them within the "International paper" group?

  • Automatic calculate when opening a file returns #REF error

    We have a workbook which uses a custom function defined in an addin.   we need to send this workbook to our colleagues which is without the addin Previously in office 2003 and 2007, this is not a problem.  values will be shown in the custom function