SMTP outgoing on several accounts FAIL

I'm new to Thunderbird. With the keys v 31.0

I have several e-mail accounts hooked, all with separate outgoing SMTP defined. They all work... and then they don't.

What is happening is that no matter what email account I use to send an e-mail, the SMTP protocol changes by default, that will not work unless I'm on default e-mail account.

I'm going on the specific account settings, and of course the SMTP is by default off. I have change. I can send my email.

I'm going to send another and this process repeats.

It is incredibly difficult to have specific manually the SMTP protocol every time I want to send an email.

Why - what is forgetting its individual account settings?

How can I fix it?

You use or you use multiple identities for accounts?

Each account can have multiple identities using a specific SMTP server each. Make sure they are on what you want.

There is full information on this configuration to this MozillaZine page.

Tags: Thunderbird

Similar Questions

  • several accounts GMAIL under the gmail, not the email app application.

    Wonder if it is possible to have several accounts gmail under the gmail app? It shows me only one, without the ability to add more (unlike my tmobile mytouch friends)

    also, I noticed that the gmail account that I have linked to the gmail app, is not listed under "communications" or under the "email" app

    thoughts?

    Ninjaap according to this, you cab have more than 1 gmail account. On the Droid, just type 'add account' of Gmail, but these indications for the backflip...

    https://Motorola-global-Eng.custhelp.com/cgi-bin/motorola_global_eng.cfg/php/enduser/std_adp.php?p_faqid=41210&p_created=1262804753&p_sid=xhsqsIWj&p_sp=

  • Limited SMTP outgoing with PIX

    I want to restrict SMTP out to our mail server in the DMZ. We have a PIX 515E between our internal network and an external router 2650. I want to restrict all machines except the sending SMTP outgoing mail server but always allow SMTP to the mail server. As the PIX only supports the inbound ACL that I have to configure the ACL on the external router or is there a way of WHAT PIX for this? Thank you.

    If the SMTP box is on the DMZ of the 515e int, you can write an ACL for indoor int the 515e that blocks all the tcp any any EQ 25.

    That's assuming that you do not use SMTP from the client PC to the e-mail server in dmz, if you start the acl by a statement authorizing the smtp to smtp server traffic and the following statement must be a refusal all to smtp 25.

    Finally, if you do not have an existing ACL inside int, probably have an ip address allowed any any statement to permit all other traffic to proceed

  • ORA-29279: SMTP permanent error: 535 authorization failed (#5.7.0)

    Hello

    Can someone help me to find the number in the given pakg.
    I'm tring to send e-mails through this package, but I make a few mistakes: -.

    create or replace package body mail_pkg
    as
    function address_email (p_string in varchar2,
    p_recipients table) return varchar2
    is
    long l_recipients;
    Start
    because me in 1... p_recipients. Count
    loop
    UTL_SMTP. RCPT (g_mail_conn, p_recipients (i));
    If (l_recipients is null)
    then
    l_recipients: = p_string | p_recipients (i);
    on the other
    l_recipients: = l_recipients | ', ' || p_recipients (i);
    end if;
    end loop;
    Return l_recipients;
    end;

    procedure writeData (p_text in varchar2)
    as
    Start
    If (p_text is not null)
    then
    UTL_SMTP.write_data (g_mail_conn, p_text | g_crlf);
    end if;
    end;

    procedure to send (p_sender_email in varchar2,
    P_FROM in varchar2,
    p_to in the table by default array(),
    p_cc in the table by default array(),
    p_bcc in the table by default array(),
    p_subject in varchar2,
    p_body long)
    is
    long l_to_list;
    long l_cc_list;
    long l_bcc_list;
    l_date VARCHAR2 (255) default TO_CHAR (SYSDATE, 'dd my hh24:mi:ss yy') | ' + 8:00 (GMT + 08:00) ";

    Start
    SELECT PARAM_VALUE IN g_mailhost OF IHR_PARAM_DATA
    WHERE PARAM_CODE = 'MAIL_HOST' AND
    ((CATÉGORIE = S ')) AND
    (((FROM_DATE EST NULL) AND (TO_DATE IS NOTHING)) OR)
    ((FROM_DATE EST NULL) AND (TO_DATE > = trunc (sysdate))) OR
    ((FROM_DATE < = trunc (sysdate)) AND (TO_DATE IS NULL)) OR
    ((FROM_DATE < = trunc (sysdate)) AND (TO_DATE > = trunc (sysdate))) AND
    SEQUENCE = (SELECT MIN (SEQUENCE) IHR_PARAM_DATA
    WHERE PARAM_CODE = 'MAIL_HOST' AND
    ((CATÉGORIE = S ')) AND
    (((FROM_DATE EST NULL) AND (TO_DATE IS NOTHING)) OR)
    ((FROM_DATE EST NULL) AND (TO_DATE > = trunc (sysdate))) OR
    ((FROM_DATE < = trunc (sysdate)) AND (TO_DATE IS NULL)) OR
    ((FROM_DATE < = trunc (sysdate)) AND (TO_DATE > = TRUNC (SYSDATE))) );

    g_mail_conn: = utl_smtp.open_connection (g_mailhost, 25);
    UTL_SMTP. HELO (g_mail_conn, g_mailhost);
    UTL_SMTP.command (g_mail_conn, 'auth login');
    UTL_SMTP.command (g_mail_conn,
    mail_pkg.f_base64_encode_raw (utl_raw.cast_to_raw ('mailuser')));
    UTL_SMTP.command (g_mail_conn,
    mail_pkg.f_base64_encode_raw (utl_raw.cast_to_raw('***')));
    UTL_SMTP.mail (g_mail_conn, p_sender_email);
    l_to_list: = address_email ("to:", p_to);
    l_cc_list: = address_email ("Cc:", p_cc);
    l_bcc_list: = address_email ("Bcc:", p_bcc);
    UTL_SMTP.open_data (g_mail_conn);

    writeData (' Date: ' | l_date);
    writeData (' to: ' | nvl (p_from, p_sender_email));
    writeData (' subject: ' | nvl (p_subject, '(aucun sujet) "));

    writeData (l_to_list);
    writeData (l_cc_list);

    UTL_SMTP.write_data (g_mail_conn, "| g_crlf);
    UTL_SMTP.write_data (g_mail_conn, p_body);
    UTL_SMTP.close_data (g_mail_conn);
    UTL_SMTP. Quit (g_mail_conn);
    end;
    end;


    I get the below error when tring to run the procedure, even if my e-mail and password are correct.

    ERROR on line 1:
    ORA-29279: SMTP permanent error: 535 authorization failed (#5.7.0)
    ORA-06512: at "SYS." UTL_SMTP", line 21
    ORA-06512: at "SYS." UTL_SMTP", line 99
    ORA-06512: at "SYS." UTL_SMTP", line 159
    ORA-06512: at "SYSTEM. SEND_MAIL', line 12
    ORA-06512: at line 1

    pls help;

    Thank you
    Uttam Singh

    Published by: Uttam Singh on December 26, 2008 19:56

    Uttam,

    This error is due to wrong settings of the SMTP server. Oracle, very probably has nothing to do with it. If I remember correctly, you are using Gmail for her. I guess there is a problem with it. Try with some other parameters of the field. I'll try to use the same with my own domain name. In the meantime, enjoy these two link.
    http://www.williamrobertson.NET/code/utilities.pkg.txt
    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:2118740358226 #9206460145191
    HTH
    Aman...

  • Change the smtp settings in existing account?

    I need to change the settings of smtp on several existing accounts (because the provider has changed their name from mail.nnn to smtp.nnn server).

    In settings, the outgoing (SMTP) server setting only allows me to choose from a drop-down list of smtp servers, i.e. those I have previously placed under different existing accounts. None of these servers meets my need, of course.

    It seems that the only way forward is for me completely re - create at least one of the accounts, and then use its for other existing accounts smtp server where, as much the provider will allow me.

    It is a nuisance because I have to re-enter the filters, move, archive copy to Inbox, sent and write the contents of the folder, move all custom files and probably some other things I thought not again.

    This question was asked previously archived section 'how to change the smtp Protocol. element of the outgoing e-mail server.
    https://support.Mozilla.org/en-us/questions/999283
    As far as I can see, the answers he do not offer a solution. Sorry if I misunderstood or missed another assignment that solves this.

    Tim
    London

    Tools > accounts settings
    or
    Right click on the email account in the folders pane, and then select "settings".

    In the left pane: click on "outgoing (SMTP) Server"
    See the image below.

    You will see a list of your smtp servers.
    Select this option to highlight one in the list you want to change.
    Click on the button 'change '.

    a new window opens, so you can modify the server name.
    

    Click OK

    Click Ok to save and close the account settings.

  • Notes, several accounts iCloud and synchronization

    I recently had the spirit of start EverNote use of annotations for our business. Since the vast majority of what we need to Evernote for is text (with degrees of simple accessories of formatting and image now & then), moving Notes just made sense from a financial point of view. I mean... it's free, basically. So after a few weeks to get everything going on above, I noticed a strange hiccup in the way Notes synchronizes, or rather, how he is not sync, if the account that you are synchronizing with is not your main account.

    I have my own, primary iCloud account that I use for everything. Our company has its own iCloud account, we used the Contacts and calendars, and now pointed out. On all devices where my personal iCloud account is the main (an iPhone and an iPad and two Mac) all my notes Sync exactly as they should, with good formatting (titles, titles, bodies). On almost all devices, where the business iCloud account is not the main account, formatting options only I get are super base: bold, italic and underline. No title, no star, just body (with chips if necessary).

    What I stumbled across, which makes me more than a little disgusted, is that if I visit iCloud.com and log on with the account of our company, I can change formatting to my heart's content! Notes can have good titration! And with appropriate headers! Make the changes inside iCloud.com and I expect that these changes will be maybe get pushed to all devices where the iCloud company is not the principal. I don't know, think of it as perhaps the system just need a push in the ass.

    But this isn't what happened. None of these formatting changes appear on these devices where business iCloud account is not primary. But we have an iPhone exclusively dedicated to business and iPhone 5 c, formatting get synchronized, and it seems like it does on iCloud.com where I made formatting changes complete (titles, titles, etc.).

    I've also attached a few screenshots iPhone, pointing out another weird divergence during the synchronization of Notes on a primary and secondary iCloud account.

    So my question/comment is kind of double, or perhaps several times.

    1. Why does one thing?

    2 is there something I am doing wrong?

    3 we believe that maybe it's a thing that Apple will solve or difficulty?

    4 sounds ridiculous. It's silly, right?

    Thanks for any help or advice, what is ' All can give! I want to leave Evernote for good, but it's really kind of a deal breaker!

    Just after the 9 integration Apple ios introduced new icloud notes that suppose to support various interesting features some not everyone needs. Unfortunately, it will take to pass normal notes synchronization using the IMAP server. Which means that if you have improved your primary and secondary accounts again mentions secondary accounts will be synchronized with the iphone, all the new features, or notes. Your situation is actually better then I thought, get you notes, but not the formatting. Another 'good' story, and once upgrading is done it CANNOT be reversed.

    Now, that would be my guess on your problem, but I can also be bad if I misunderstood, my apologies.

    Upgrading of your notes with iOS 9 and OS X El Capitan - Apple Support

    iCloud: overview of Notes

  • Several updates fail with 0x8007001F

    Windows XP, 2699988 and 2632503 updates fail with 0x8007001F error code. He had 11 updates fail, manually installed microsoft.com/download 10, but could not be the last of them. Follow-up of the diagnoses of FixIt to manually reset Windows update, the re-registration of the DLL and clear the distribution of software with several stop folder net start commands, no solution.  Added an optional update and it did not. Tried several profiles and reboots.

    The user has installed Real Player about two weeks ago. Symentec Endpoint Protection started Pavilion virus after that. Do you have a manual removal of Real Player. Scanned and cleaned with MalwareBytes and seven. No other problems not reported except this problem of Windows Update.

    I paid $49 for support chat. Anoop representative quicky identified a rootkit virus. Fixed with Kapersky anti-rootkit utility TDSSKiller and complete a reset of settings IE. One of the symptoms that identified, he was Manager of disc appears not all discs. Closed question.

  • I deleted several accounts of users, but after that I have restart the laptop all user accounts have been restored?

    I deleted several user accounts and need to restart to changesw can take effect, but after that I have to restart the laptop then all user accounts have been restored?

    Hi GhettoBoy,

    How do you delete user accounts? Is it just C:\Dosument and settings users or accounts under the control panel? If you don't want to keep all these account data, you can try to delete the profile of click Start-> settings-> Control Panel-> system-> Advanced-> user profile and select the profile and remove. Also check under 'User accounts' in the control panel to remove the names of users.

    I hope this helps.

  • Manage several emails, I use several accounts (Yahoo & Hotmail) e-mail, but is there a way to control these accounts of e-mail to a Web site or anything that is free?

    Manage several emails, I use several acconts e-mail (yahoo & hotmail), but is there a way to control these email account from a Web site or something that free s and respect privacy, pls kindly include G mail other than the 2 aforementioned accounts. TQ.

    original title: manage several E-mails.

    Download a real email client (application) to connect your email on your local computer.  In this way, you can manage all the emails in one application and even keep local e-mail backups if you want.

  • Connect under several accounts with Windows view customer

    I need to be able to hold several sessions of view from a Windows machine. I have a user that connects so that new users to configure their profile. She must be able to keep his show logged in while she connects under the second account. I can open a second session of the view, but he always uses the same credentials. I need to be able to open the customer to see twice using different credentials. Is this possible?

    Not supported: you can run ' wswc - standalone "to get a new customer to launch and no not just to refocus the original instance.

  • is it possible to read several accounts together as mobile phones?

    I just installed thunder bird, and set up my multiple accounts, is far from implementing the Thunder Bird or y at - it a plug-in to view all new mail simultaneously.showing the mail they are received and code to the account they received from the color. like my phone android mobile.

    View (alt + V) menu > folders > unified.

  • family in several accounts iCloud account

    I set up my account family (7 people) all on my apple there, for a few years my parents and brothers account have all set up their own accounts except for my little brother. How to transfer his music/contacts/documents in a new account icloud for his macbook and iphone?

    The software is different on our macbooks

    For purchased music, you have not. Remaining with the Apple which bought them ID.

    The rest is probably better transferred manually from your machine to his own, and then it can start to synchronize its iCloud account.

    How many contacts are you talking about? > > > iCloud: contact information as a vCard export

  • If you set time machine to a single account on an iMac, and you have several accounts, he will return for all accounts?

    This is probably a stupid question, but I bought a WD cycloids and am set up time machine for that.  As we have a family mac with multiple accounts, only can I configure the back on 1 account in sys prefs to cover documents etc on the mac as a whole?

    Thank you very much of a technology luddite

    Time machine backup all drives connected locally on your Mac, maintain existing permissions for all users. You can add folders or Volumes it should pass to the blacklist.

    It can back up to any local or accessible via the network of road, including the drive Time capsule on a LARGE Airport Extreme Base Station. It can't Backup AND Restore properly from a NAS or disc attached to a 'short' Airport Extreme.

  • E-mail account fails to connect on a regular basis

    Almost every day, my email .me account does not work for a few hours. The phone is set to check my e-mail every 15 minutes, and when the failure occurs that I get the yellow triangle and the message that the account name or the password is incorrect. If I just wait for what any one to six hours it starts the update again. All this time my accounts aol & gmail accounts synchronize properly. No matter if I am in one place for this time, or travel and so passing through many different cells. The failure can happen at any time of the day or night. In moments my .me account is accessible via my cell phone & ipod Touch. Any ideas how to fix this annoying problem?

    I solved the problem - it has to do with the automatic settings of Android - if someone has the same problem, please contact me directly for the solution

  • Add on your HP printer connected account failed

    I had to send my first HP printer rear print quality was defective.

    So, I get a new printer and have not been able to set up properly.  Sometimes, he says that it is offline, but very clearly.  I deleted all the software and tried to reinstall, who got running initially.  Today, he said that he had no connection with my computer.  Yet once you remove all the software to try sorting.  It gets to a certain point and then said

    Add on your HP printer connected account... successful

    When I implemented the second printer in the fact that I tried to put the address printers, but he said he was already in use.  I think it is all confused...

    Help, please...

    If you talk about your account (email address) ePrint, you can not use it again that it is already used.  You must start over and get a new address of email ePrint.

Maybe you are looking for