Using a 3rd party SW to email out and Thunderbird is requiering a SMTP password to be typed

I am using another program that sends email through Thunderbird. When I open thunderbird and send a message directly it will send it fine. When I send a message through the other program it opens Thunderbird and creates the mail but requires me to put in the SMTP password. When I do it sends the mail out fine and will continue to work fine until I close our Thunderbird. I do not have the master password option set so I should not have to put in my password. Any help would be great.
Thanks
Lee

I am using another program that sends email through Thunderbird. When I open thunderbird and send a message directly it will send it fine. When I send a message through the other program it opens Thunderbird and creates the mail but requires me to put in the SMTP password. When I do it sends the mail out fine and will continue to work fine until I close our Thunderbird. I do not have the master password option set so I should not have to put in my password. Any help would be great.
Thanks
Lee

Similar Messages

  • Can't sign in using any 3rd party email client with my iCloud account on any Mac. Tried every settings, My iCloud only works with Mail.app

    Can't sign in using any 3rd party email client with my iCloud account on any Mac or any other Mac. My iCloud will only work with Mail.app. All the clients I tried work perfectly well as long as I sign in with somebody else's iCloud account. But mine won't work no matter the client (Postbox, Unibox, Airmail...) and no matter the computer.
    I can access my account on iCloud.com, but I can't use email clients without getting error messages prompting me to check my password or login.
    I was able to use those clients in the past but a couple of months ago I got logged out of Airmail and the issue started just like that!
    I tried every possible mail server settings including the following:
    IMAP information for the incoming mail server
    Server name: imap.mail.me.com
    SSL Required: Yes
    If you receive errors when using SSL, try using TLS instead.
    Port: 993
    Username: The name part of your iCloud email address (for example, emilyparker, not [email protected])
    Password: Your iCloud password
    SMTP information for the outgoing mail server
    Server name: smtp.mail.me.com
    SSL Required: Yes
    If you receive errors when using SSL, try using TLS instead.
    Port: 587
    SMTP Authentication Required: Yes
    Username: Your full iCloud email address (for example, [email protected], not emilyparker)
    Password: Your iCloud password

    Those are the correct settings, and they work with any email client that supports Imap.
    Try again.

  • How can I use a 3rd party XML parser such as xerces with OC4J ?

    Hi all tech experts,
    I am using Oracle Application Server 10g Release 2 (10.1.2) and i have
    installed Portal and Wireless and OracleAS Infrastructure on the same
    computer.
    i tried all the solutions on this thread
    Use of Xerces Parser in out application with Oracle App Server 9.0.4
    but still fighting.
    I have also posted this query on OTN on following thread
    How can I use a 3rd party XML parser such as xerces with OC4J?
    but no reply....
    Please help me on this issue.
    Since OC4J is preconfigured to use the Oracle XML parser which is xmlparserv2.jar.
    i have read the following article which states that
    OC4J is preconfigured to use the Oracle XML parser. The Oracle XML parser is fully JAXP 1.1 compatible and will serve the needs of applications which require JAXP functionality. This approach does not require the download, installation, and configuration of additional XML parsers.
    The Oracle XML parser (xmlparserv2.jar) is configured to load as a system level library of OC4J through it's inclusion as an entry in the Class-Path entry of the oc4j.jar Manifest.mf file. This results in the Oracle XML parser being used for all common deployment and packaging situations. You are not permitted to modify the Manifest.mf file of oc4j.jar.
    It must be noted that configuring OC4J to run with any additional XML parser or JDBC library is not a supported configuration. We do know customers who have managed to successfully replace the system level XML parser and the Oracle JDBC drivers that ship with the product, but we do not support this type of configuration due to the possibility of unexpected system behavior and system errors that might occur from replacing the tested and certified libraries.
    If you absolutely must use an additional XML parser such as xerces, then you have to start OC4J such that the xerces.jar file is loaded at a level above the OC4J system classpath. This can be accomplished using the -Xbootclasspath flag of the JRE.
    i have also run the following command
    java -Xbootclasspath/a:d:\xerces\xerces.jar -jar oc4j.jar
    but no success.
    How could i utilize my jar's like xerces.jar and xalan.jar for parsing instead of OC4J in-built parser ?
    All reply will be highly appreciated.
    Thnx in advance to all.
    Neeraj Sidhaye
    try_catch_finally @ Y !

    Hi Neeraj Sidhaye,
    I am trying to deploy a sample xform application to the Oracle Application Server (10.1.3). However, I encountered the class loader issue that is similar to your stuation. I tried all the three solutions but the application is still use the Oracle xml paser class. I am wondering if you have any insight about this?
    Thanks for your help.
    Xingsheng Qian
    iPass Inc.
    Here is the error message I got.
    Message:
    java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
    Stack Trace:
    org.chiba.xml.xforms.exception.XFormsException: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.initModels(Unknown Source)
         at org.chiba.xml.xforms.Container.init(Unknown Source)
         at org.chiba.xml.xforms.ChibaBean.init(Unknown Source)
         at org.chiba.adapter.servlet.ServletAdapter.init(ServletAdapter.java:153)
         at org.chiba.adapter.servlet.ChibaServlet.doGet(ChibaServlet.java:303)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Instance.iterateModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.initializeModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.init(Unknown Source)
         at org.chiba.xml.xforms.Initializer.initializeBindElements(Unknown Source)
         at org.chiba.xml.xforms.Model.modelConstruct(Unknown Source)
         at org.chiba.xml.xforms.Model.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.dispatchEvent(Unknown Source)
         at org.apache.xerces.dom.NodeImpl.dispatchEvent(Unknown Source)
         ... 18 more

  • How to use a 3rd party source control tool with RoboHelp?

    Hello,
    I would like to set our RoboHelp users up with source control.  They are using RoboHelp HTML 8.0.
    Our software developers are using the AccuRev scm system; I'd like the doc team to use AccuRev, too.
    Can someone direct me to RoboHelp documentation that explains how to set up and use a 3rd party scm system with RoboHelp?
    Thank you,
    Marilyn

    It appears that RoboHelp 7 only sees the first SCC provider listed in the Windows Registry and ignores the rest. I was able to get RoboHelp to display the File | Version Control menu for SourceGear Vault by setting the following two Registry keys and removing keys for other SCC providers (SourceSafe, Surround SCM, and others I am evaluating).
    HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider
         ProviderRegKey = \Software\SourceGear\Vault Client
    HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\InstalledSCCProviders
         SourceGear Vault VS2003 Compatible Client = SOFTWARE\SourceGear\Vault Client
    If I create a new RoboHelp project, save it, then select File | Version Control | Add to Version Control, RoboHelp does the following:
         - pops up the Select Version Control Provider dialog and displays SourceGear Vault Classic Client.
         - I select that, check "Make this my default selection" checkbox, and click OK.
         - RoboHelp crashes.
    I'm using SourceGear Vault 5.02 under Windows 7 Ultimate 32-bit. A search of the SourceGear Vault knowledge base reveals that they do not support RoboHelp because of its incorrect behavior and instability. It's so sad that RoboHelp can't work properly with industry standard SCC providers. Vault is by far the best SourceSafe replacement out there, and very affordable.

  • I used a 3rd party to move thunderbird files but can't remember what it was called

    I used a 3rd party program to move my thunderbird files a few years ago but can't remember what it was. It worked very well and would like to use again. I think it was mozip or something like that.

    There is an add-on to TB which allows import and export of emails in various formats to a separate storage medium (external disk, thumb drive, etc.).
    The instructions on how to download and install it can be found at http://barryduggan.info/exportMail.php

  • Can i use a 3rd party superdrive with my Macbook Air?

    Hi,
    As my title says, Can i use a 3rd party superdrive with my Macbook Air rather than the Apple drive?
    Thanks.

    Mark Thornton wrote:
    Hi,
    As my title says, Can i use a 3rd party superdrive with my Macbook Air rather than the Apple drive?
    Thanks.
    This one works just awesome:
    http://www.newegg.com/Product/Product.aspx?Item=N82E16827136201&cmre=external_dvd_burner_usb-_-27-136-201--Product

  • TS2580 I am attempting to use a 3rd party host to publish web site designed from I-web. The main page of the site is asking for host IP address, etc.  I've got all that, except it is asking for Directory/Path.  To what is this referring?  Thanks!

    I am attempting to publish a web site designed on i-web using a 3rd party host.  The main page of my web site is asking for IP address of host, etc.  I have all that, but it is asking for Directory/Path.  To what is this referring?
    Thanks.

    The directory/path is the path to the root folder and, in most cases, should be left blank...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html

  • HT5312 What if I no longer use my rescue email address and cannot remember the username or password for that email address to retrieve the answers to my challenge questions?

    What if I no longer use my rescue email address and cannot remember the username or password that I set up as my rescure email?

    You need to ask Apple to reset your security questions; this can be done by phoning AppleCare and asking for the Account Security team, or clicking here and picking a method, or if your country isn't listed in either article, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (106063)

  • How many ghz should I get if I plan on using my IPAD2 for internet access, email, facebook and games for my children?

    How many ghz should I get if I plan on using my IPad2 for internet access, email, facebook and games for my daughters children?

    Ghz is the CPU speed and that is fixed for each iPad model.
    The GB is the number of Gigabytes of storage.
    I had a 32G iPad1 and filled it up with 5000 songs, 20,000 photos and about 50 apps.  It doesn't sound like you will need anything larger than that.  If you are just talking about a few dozen apps and email, the 16G version should be adequate.

  • Recently changed my apple ID, both email and password. For some reason icloud is on the old email account and i do  not remeber that password to log out and login with new credentials

    I recently changed my apple ID, both email and password. For some reason icloud is on the old email account and i do not remember that password to log out and login with new credentials.

    I have the EXACT SAME PROBLEM and have been researching the past 2 hours!!!! Aaargh!

  • HT1338 i have about 88,000 songs in my music library, some are duplicates. Does anyone know of any Apple Product or 3rd party software that will identify and remove duplicates.

    I have about 88,000 songs in my music library, some are duplicates. Does anyone know of any Apple Product or 3rd party software that will identify and remove duplicates.

    Backup your music to an external source before doing this, just in case you delete the originals by accident.
    iTunes will show you the duplicates.  But I recommend tagging their comments or another field once selecting them to ensure you don't accidentally delete both the original and duplicate.  You can always select all of them and change all their comment tags at once.  Once you've done that, stop showing duplications, and then sort by the comment field.  This will allow you to determine whether only the duplicates were shown in the show duplicates, or the originals.  If you see any without comments, then you can go ahead and delete the duplicates.

  • HT204053 How do I delete an iCloud ID that has an old email address and I can't remember the password?

    How do I delete and iCloud account that has a former email address and I can't remember the password.  All attempts to recover the password have failed!!

    Hello there, Gary7023.
    The following Knowledge Base article made prove useful for you with the issue you're having:
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/TS5223
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • My apple id for icloud is linked to an invalid email address and i do not have the password for the account.  I need to delete the account to access my icloud on my iphone.  any ideas?

    my apple id for icloud is linked to an invalid email address and i do not have the password for the account.  I need to delete the account to access my icloud on my iphone.  any ideas on how to override this issue?

    If you updated the old ID at one point to create your current iCloud ID, temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Using a 3rd party router for Multicast

    Hi all,
    There’s a lot of feedback on this board about using third party routers with Multicast, so we’ve decided to put this information all in the one place for you.
    NOTE: the workarounds below haven’t been tested by BT as we do not support 3rd party routers and we do not endorse any of them. Our recommended router remains the Home Hub.
    With the above statement in mind, we know that a lot of you do choose to use other routers.  The information contained here has come from fellow customers who have given their time to share this information in good faith. Thanks to all of the forum members who have helped make this information available to our community it is a great example of the wealth of information that a community can provide and we hope this encourages users to come back and visit us in the future.
    A special mention goes to walkerx who has posted and prompted a lot of the provided information.
    Hub configurations in alphabetical order:
    Apple Airport Extreme
    Put your Airport Extreme into Bridge Mode and turn the Home Hub's wireless off.
    [From MartinH's post]
    ASUS RT-N66U
    You must configure 'Enable VPN + DHCP Connection' to 'No' under the WAN option.
    Settings used were:
    - Have router on the latest firmware: 3.0.0.4.374.130
    - Use the following settings in LAN > IPTV:
    - 'Select ISP Profile' = None
    - 'Choose IPTV STB Port' = None
    - 'Use DHCP routes' = Microsoft
    - 'Enable multicast routing (IGMP Proxy) = Enable
    - 'Enable efficient multicast forwarding (IGMP Snooping) = Enable
    - 'UDB Proxy (Udpxy) = 0
    [From sepph's post]
    Billion 7800DXL
    Router has been reported to work.
    [From walkerx's post]
    Billion 7800N
    Requires you to add another profile (Pure Bridge) to the EWAN port along with the PPPoE profile. Save settings & restart. Also enable IGMP proxy & snooping.
    [TimCurtis' post]
    DLink Dir 825
    If enable multicast you can see the on-demand players but get an IPC6023 error when viewing the test channel (this means poor internet channel quality). This error message comes up even though it works if use the Home Hub 4
    [walkerx's post]
    Netgear R6300
    Netgear R6300, but with the Home Hub 3.0 and 500Mbit Powerline adapters in the picture.
    Modem -> HH3 -> R6300 -> Powerline -> 2 x Youview Boxes on other Powerlines.
    To do this, configure the Home Hub 3.0 as 192.168.1.1, then disable its wireless and DHCP. Make sure that NAT and UPNP were enabled, and then set it to use the address 192.168.1.254 as a DMZ server.
    Then configure the R6300 as the address 192.168.0.1, using the WAN IP address of 192.168.1.254, with 192.168.1.1 as the gateway and DNS server. The R6300 is then connected via WAN port to the HH3 Gigabit port.
    In the R6300 settings switch on IGMP. 
    The above settings allow both YouView boxes to use on demand content and different streaming channels simultaneously, as well as giving the full features of the R6300 such as AC1750 wireless, network printing, and DLNA
    [wigglr's post]
    TP-Link AC1750
    Router has been reported to work.
    [zarf2007's post]
    TP-Link Archer C7
    Router has been reported to work.
    [HappySlayerUK's post]
    TP-Link TL-WR1043ND
    No configuration needed, plug and play.
    [walkerx's post]
    TP-Link WDR4300 N750
    Router has been reported to work.
    [aseymour's post]
    TP-Link TL-WDR4900 N900
    Router has been reported to work, plug and play.
    [cactusbob's post]
    TP-Link routers in general
    How to configure Multicast on TP-Link routers (from the TP-Link website).
    One of our posters also found the following:
    He found that your router must be able to do the following for Multicast:
    For an end user connected via Openreach GEA (FTTC and FTTH)
    • The Residential Gateway will support:
    – IPoE for multicast traffic and PPPoE for BB traffic;
    – VLAN tag ID of 0 or no VLAN tag ID for multicast and BB traffic;
    – Fork IGMP requests up multicast and BB paths.
    For an end user connected to an MSAN (WBC copper)
    • The Residential Gateway will support:
    – A dual VC architecture;
    – Accept TV Connect multicast traffic on ATM VP/VC 0/35 with IPoE and broadband traffic on ATM VP/VC 0/38 with PPPoE;
    – Fork IGMP requests up multicast and broadband paths.
    IGMP should v3 and will be in range from 225.0.0.0 to 239.255.255.255 
    [walkerx's post]
    List of routers that do not appear to work:
    Draytek 2750n
    Linksys EA4500
    linksys EA6300
    Netgear AC6300
    [From Red_Snow's post]
    If you use a router that’s not listed here, do a search on the YouView from BT board to see if advice has been posted elsewhere. If it hasn’t, do post your question.
    Thanks,
    Stephanie
    Stephanie
    BTCare Community Manager
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post. If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

    Thanks for confirming that quails.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Map security roles to group within LDAP using external 3rd Party LDAP

    I'm haveing a problem mapping my logical role defined in my web.xml to a role within Active Directory. I'm currently authenticating using Active Directory succsfully, however after the user is authenticated I get a message from the OC4J container that my role can not be found. Can you map a logical role to group within Active Directory? Below are details about my configuration.
    Any help would be greatly appreciated.
    Log.xml log entry that confirms webtA is communicating successfully with AD.
    SG_TEXT>JAAS-LDAPLoginModule: authenticating user wmgraham</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JAAS-LDAPLoginModule: DN for user wmgraham is cn=wmgraham,ou=endusers,ou=itod,ou=endusers,ou=div20,ou=hq,dc=fbinet,dc=fbi</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    Error reported in the log
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2008-08-27T11:38:05.991-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>j2ee</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>F2287032-W</HOST_ID>
    <HOST_NWADDR>30.30.16.14</HOST_NWADDR>
    <MODULE_ID>security</MODULE_ID>
    <THREAD_ID>14</THREAD_ID>
    <USER_ID>wmgraham</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>30.30.16.14:59560:1219851485804:6</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>for group=[JAZNGroupAdaptor: webta] there's no matching role found.</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    Web.xml Logical Role definition
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>allpages</web-resource-name>
    <url-pattern>/servlet/*</url-pattern>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>WEBTA_J2EE_USER</role-name>
    </auth-constraint>
    </security-constraint>
    <security-role>
    <role-name>WEBTA_J2EE_USER</role-name>
    </security-role>
    Orion-web.xml This file maps the logical role defined in webxml to a group within Active Directory.
    <security-role-mapping name="WEBTA_J2EE_USER">
    <group name="webta"/> <-- Group defined in AD -->
    </security-role-mapping>

    What is the name of the group in AD (provide the DN) that you want to map the j2ee logical role WEBTA_J2EE_USER? What are the group search base and group mapping attribute?
    When wmgraham logs into the app, the 3rd party ldap login module will attempt to query for the groups wmgraham is a member of - this is done using the group search base configuration for the provider.
    In this example, the DN is "cn=wmgraham,ou=endusers,ou=itod,ou=endusers,ou=div20,ou=hq,dc=fbinet,dc=fbi" and likely user search base is set to "ou=endusers,ou=itod,ou=endusers,ou=div20,ou=hq,dc=fbinet,dc=fbi".
    Assuming group search base is (say) "ou=groups,ou=itod,ou=endusers,ou=div20,ou=hq,dc=fbinet,dc=fbi" and and group mapping attr is "cn", then the role mapping you mention should work for group DN "cn=webta,ou=groups,ou=itod,ou=endusers,ou=div20,ou=hq,dc=fbinet,dc=fbi"

Maybe you are looking for

  • Can't get iMessage or FaceTime to work

    Hi , my son has a new iPod touch and we can't get the iMessage or FaceTime to work . Both have the same issue If I tap on iMessage I get the enter apple ID account info . I enter his password (name already filled) and tap sign in . It goes to the ema

  • Recovering from a Hard drive failurevering

    Hi friend. Suppose my hard drive has crushed beyond repair and I have to reinstall the operating system and oracle software on a new hard drive, what will I need to recover completely. I will appreciate very much. Thanks

  • Apple feedback not working in safari

    I cannot submit Apple Feedback in Safari but I can in Firefox. The problem is that there is no Comments box. Does anyone else have this problem? And/or know how to solve it? I'm using safari 5.1 on OS X 10.6.8 Thanks, Tom

  • Oracle B2B server is not starting up

    Hi, System DSCP no(HOST NAME) has got changed ,after that srever is not running up properly,can you plaese help me on this.We tried to change dscp no in cache and infra eventhough status is same. (dscp17512---changed to ---->new dscp no) Please find

  • Disable Second Monitor Mac Pro

    I have a nice new Mac Pro system with the standard Nvidia 7300 Video card. I connected a second dipslay to it today to watch some videos on my 32" HDTV. However I noticed that the video really suffers when both displays are active in extend mode. The