[HELP]: email sent by running Tomcat library loses the French tanks

Hello

I have cameras a jar of wrappers library that sends an email containing UTF-8 characters encoded. Now, when sending an email from a Solaris environment, using the shell directly (using a built-in test method), the mail is generated correctly (characters are correctly encoded in the body of the email - when checking the log4j - which has been configured to write content in UTF-8 format) and e-mail is readable on MS Outlook.

However, when you call the same method of a Web application, the email is generated correctly, however as soon as it is sent and the output of DEBUGGING of JavaMail prints e-mail already with the screwed up French characters.

Here are the contents of the file and outputs the log to illustrate what is happening...

I have already supported generation of e-mail methods to ensure that all entries and exits is compatible with UTF-8 encoding (all readers, writers and getBytes() methods explicitly specify the encoding as "UTF-8" type to not depend on the JVM locale by default)...

If a person suffers from a similar behavior and/or have some advice on how to solve this problem, it would be greatly appreciated! :)

Thank you all for your support!
Gizmo


* (1) - the Email in French - in-house and comes from newspaper the Tomcat file:*
-----------------------------------------
Dear user,

You have ordered from EUMETSAT the following items:

Description, quantity, unit price

-Meteosat Key Unit (MKU), 1, EUR700.0
-Meteosat Station key Unit (SKU), 1, EUR400.0
-Direct Metop Readout Station key Unit (SKU), 1, EUR400.0

Total amount: EUR1500.0


We remind you that you can now proceed to payment by credit card through Saferpay. Please click the link below and follow the instructions:

We will send the goods upon receipt of your payment to you.

Pour any question or if you want to change/cancel your order, please contact us at [email protected].

Kind regards
-----------------------------------------

* (2) - out of the JavaMail API with the property set to true mail.debug *.
-----------------------------------------
DEBUG: getProvider() return javax.mail.Provider [TRANSPORT, smtp, com.sun.mail.smtp.SMTPTransport, Sun Microsystems, Inc.]
SMTP DEBUG: true, useAuth fake useEhlo
DEBUG SMTP: try to connect to the host 'mail.bla.int', port 25, false isSSL
220 *********************************************************
DEBUG SMTP: connected to the host 'mail.bla.int', port: 25

EHLO veopis02_e0
250 - listserv.bla.int pleased to meet you
250-ETRN
250 XXXXXXXA
250 AUTH LOGIN
250 AUTH = LOGIN
250 XXXB
250 XXXC
250-PIPELINING
250 8BITMIME
250 DSN
SIZE 250 10485760
"" DEBUGGING SMTP: found extension "ETRN", arg "
"" DEBUGGING SMTP: found 'XXXXXXXA' extension, arg "
DEBUG SMTP: Found extension "AUTH", arg 'LOGIN '.
"" DEBUGGING SMTP: found extension "AUTH is LOGIN," arg "
"" DEBUGGING SMTP: found extension "XXXB", arg "
"" DEBUGGING SMTP: found extension "XXXC", arg "
"" DEBUGGING SMTP: found extension "PIPELINING", arg "
"" DEBUGGING SMTP: found "8BITMIME" extension, arg "
"" DEBUGGING SMTP: found "DSN" extension, arg "
DEBUG SMTP: Found 'SIZE' extension, arg "10485760.
SMTP DEBUG: false use8bit
MAIL FROM: < [email protected] >
250 sender OK
RCPT TO: < [email protected] >
250 recipient OK
DEBUG SMTP: Addresses verified
DEBUG SMTP: [email protected]
DATA
Send a message 354 end with < CRLF >. < CRLF >
From: [email protected]
Answer: [email protected]
To: [email protected]
Message-ID: < [email protected] >
Subject: [EO PORTAL]: reminder: payment by credit card for your order 10000116
MIME-Version: 1.0
Content-Type: text/plain; charset = "UTF-8".
Content-Transfer-Encoding: City-printable

Dear user,

You have order? aupr? s d? EUMETSAT the following items:

Description, quantity?, unit price

-Meteosat Key Unit (MKU), 1, EUR700.0
-Meteosat Station key Unit (SKU), 1, EUR400.0
-Direct Metop Readout Station key Unit (SKU), 1, EUR400.0

Total amount: EUR1500.0


We remind you that you can now proc? der car Microsoft payment by =
You CR? said through Saferpay. Please click on the link below and follow =
instructions for e:


We will send you the order items? s d? s r? reception of your pai =
change. = 20

Pour any question or if you want to change/cancel your order, ve =
contact us to uillez? [email protected].

Best regards, = 20

.
250 OK
QUIT SMOKING
221 listserv.bla.int so long and thanks for all the fish
-----------------------------------------

* (3) - this is the method that I use to send email *.
-----------------------------------------
public int sendEmail() 
     {
          //Set properties
          Properties properties = System.getProperties();
          properties.put("mail.smtp.host", this.mailSmtpServer);
          properties.put("mail.host", this.mailSmtpServer);
          properties.put("mail.transport.protocol", this.mailTransportProtocol);
          properties.put("mail.mime.charset", this.mailMimeCharSet);
          properties.put("mail.content.type", this.mailContentType);
          properties.put("mail.debug", "true");
          
          Session session = Session.getInstance(properties, null);
               
          //Create a MimeMessage object
          MimeMessage message = new MimeMessage(session);
          
          //Add FROM
          InternetAddress[] from = new InternetAddress[this.fromEmailAddresses.size()];
          for (int i=0;i<this.fromEmailAddresses.size();i++)
               from[i] = new InternetAddress(this.fromEmailAddresses.get(i));
          
          message.addFrom(from);
          
          //Add TO
          InternetAddress[] to = new InternetAddress[this.toEmailAddresses.size()];
          for (int i=0;i<this.toEmailAddresses.size();i++)
               to[i] = new InternetAddress(this.toEmailAddresses.get(i));
          
          message.setRecipients(Message.RecipientType.TO, to);
          
          if (replyEmailAddresses != null && replyEmailAddresses.size() > 0)
               {
               //Add REPLY-TO
               InternetAddress[] replyto = new InternetAddress[this.replyEmailAddresses.size()];
               for (int i=0;i<this.replyEmailAddresses.size();i++)
                    replyto[i] = new InternetAddress(this.replyEmailAddresses.get(i));
               
               message.setReplyTo(replyto);
               }
          
          //Set subject
          message.setSubject(this.emailSubject, this.mailMimeCharSet);
          
          //Set the email body and
          //Header "Content-Transfer-Encoding" attribute (otherwise, it takes the devault set by the JVM)
          message.setText(this.emailBody, this.mailMimeCharSet);
          message.setHeader("Content-Transfer-Encoding", "quoted-printable");     //"quoted-printable" / "7bit" / "8bit"
          message.setHeader("Content-Type", "text/plain; charset=\"UTF-8\"");
          
          //Save all attributes into the message object
          message.saveChanges();

          //This is the line responsible for dumping the contents of the email body in the log file shown in (1)
          logger.info("Email Contents:\n\n" + this.emailBody);
          
          //Send the message
          Transport.send(message);
          
          //Return success
          return 0;
     }
-----------------------------------------

It definitely seems to be something related to your Tomcat environment, but I am at a loss as to what it could be.

If you can run your Tomcat server with a file for debugging different mail.jar made me know at [email protected]
and I'll send you a file mail.jar with debug output more to try to track down the problem.

Tags: Java

Similar Questions

  • Email sent in Windows Mail show that the email was sent from a secondary account. How can I change the main account?

    Windows Mail

    I use windows mail to send and receive emails.  However, when I send an email from my main e-mail address the response is sent to a secondary email address. My windows mail is set to import emails to this address, but I want the emails I send to show primary not secondary e-mail address. How can I change my settings to show that the email is sent to the primary address. Thanks for any help. Maureen

    1. Tools | Accounts | Mail | Properties | In general. Make sure that the response field is empty for both accounts.
    2. Also in tools | Accounts, make sure that your main account is the default account.
     
     
     
  • Why my emails sent appear in my Inbox from the ios10 upgrade?

    Since the update to ios10 whenever I send an email it now appears in my Inbox on phone and pad. It's really annoying.

    Please, someone knows how to fix this?

    Thank you!

    Be some settings > mail > always Bcc myself = 'Off '.

  • Qosmio G40: I lose the FN keys and can't get it back

    Hello evryone.

    I need litle help.

    On Qosmio G40 I lose the FN keys and now can't get it back. I close the Toshiba Manager at startup, then now is not in the bar of tasks.
    I think it need to reinstal, but do not know what is the name of the driver.

    Please help.

    Antonio Covic
    Croatia.

    You use the Vista operating system?
    If Yes, then visit the page of European driver of Toshiba and download the Toshiba value added package.
    Remove the old PPV of the G40, then install the new version.

    Good bye

  • My computer started to send copies of all email sent again and again... as 26 copies for 1 person, please please someone can help me?

    Need help

    Can someone help me I am not very computer... my computer started sending multiple copies of any email sent again and again... like 26 copies for 1 person, please please someone can help me
    You did not mention the e-mail program you use. If it's Outlook Express, you have corruption of dbx files.
     
     
    Spend most of your messages out of the Inbox and then create new folders to send and sent items box after having moved the messages you want to save to a local folder that you create.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.
     
    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    General precautions for Outlook Express:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3 
     
    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm
     
    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.
     
    Compact often as specified above.
     
    And backup often.
     
    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx 
  • Emails sent via Thunderbird are not saved on the e-mail server.

    I have a critical problem with the backup of the emails I sent to Thunderbird.

    The application works very well, that everyone sent mail is correctly saved in the folder "sent" located in the e-mail account of TB.
    The problem is that messages are not saved on the mail server associated with (in this case, pop.mail.yahoo.com), so whenever I have to reinstall the software, I lose all my outgoing emails. If I access my email on yahoo.com account and email from there, it is regularly saved in the sent folder there.

    I would be grateful if someone could
    (i) say me if it is a known problem, and if there is a way to remedy through Thunberdird server or Composition settings.
    (ii) if there is a way around the problem by saving the file 'sent' located in the Thunderbird mail folder on my HARD drive. Is it possible, after the reinstallation of the application, to paste the file sent to the Mail folder? And I want to save the "Sent.msf" file as well?

    Thank you much for the help.
    L

    The problem is that messages are not saved on the mail server associated with (in this case, pop.mail.yahoo.com),.

    With a POP account, this is the expected behavior. Only the Inbox folder is visible on the server, all the other files are the.
    https://support.Mozilla.org/en-us/KB/glossary-terms-including-types-accounts#w_pop

    To access the other folders on the server, for example your sent folder, you need to configure your account as an IMAP account.
    https://support.Mozilla.org/en-us/KB/glossary-terms-including-types-accounts#w_imap

    so whenever I have to reinstall the software, I lose all my outgoing emails.

    You should not need to reinstall the software in the first place. And even if you do you will not lose any position, unless you deliberately remove your Thunderbird profile.
    With pop, all mail is local to your computer, including the "sent" folder.
    http://KB.mozillazine.org/Profile_folder_-_Thunderbird

    If there is a way around the problem by saving the file 'sent' located in the Thunderbird mail folder on my HARD drive.

    In fact, you must back up the entire profile.
    _ http://KB.mozillazine.org/Thunderbird: _FAQs_:_Backing_Up_and_Restoring

    Is it possible, after the reinstallation of the application, to paste the file sent to the Mail folder?

    As said before, nothing is lost when reinstalling the application. If you want to move to a new computer by simply moving the profile.
    http://KB.mozillazine.org/Move_to_a_new_PC

    do I have to save the "Sent.msf" file as well?

    If you want to backup files individual mail, you don't need to save the *.msf files. They are just the index files and contain no mail. They are rebuild automatically when you start Thunderbird.
    In any case, to save the entire profile is the recommended method.

  • OE on Windowsxp woman appears not 'sent' emails sent and can not find them listed, but saw a test email now in my junk mail instead of the Inbox.

    I'm sitting at wife's office my PC with Windows XP and Outlook Express the or around October 28.

    She said she sent an e-mail to my daughter but it does not appear in the box SENT. I check and confirm that the list FEELS finished around October 10.

    I have check and sends an e-mail to test his email address on one of my email addresses.

    I click SEND and no error signal present, but that the email does not appear in its box SENT.

    I check my PC running Windows 7 and my Outlook Office e-mails and test email arrived in my spam box, instead of my normal Inbox

    This has never happened before in years and has nothing to do with XP or W7 as far as I can tell, but maybe some bad pressed the button or firewall or that a particular installation of the ENP has malfunctioned.

    His other laptop Windows XP to another location is fine.

    We don't really want migrtae sound OE in Windows Live if possible, because it has a bunch of stuff that mask the simple reception and sending of the ENP.

    Would like to receive a helping hand from hellping, please?

    Items sent in: discover | Current view and do that show all Messages is checked. If that's the case, then the sent items is corrupt.
     
    Spend most of your messages out of the Inbox, and then create the new box of sent, and sent items files after you move the messages you want to save to a local folder that you create.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.
     
    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    General precautions for Outlook Express:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3 
     
    Why you don't need your anti-virus to scan your email

    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm
     
    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.
     
    Compact often as specified above.
     
    And backup often.
     
    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx 
  • emails sent from my account but not of/by me

    On several occasions, I've found that emails have been sent from my email address but I don't not sent them.  They seem to go to everyone in my contacts list and I know that when one or more fails to send. Emails are always to buy something online and have a website reference.

    In addition, there are two contacts in my contact list that I never added and I can't delete them.

    I have Norton 360 first Edition currently running.

    I'd appreciate any help to overcome the problem of the "automatic" email

    Hello

    If you're dependencies Windows Mail, Windows Live Mail or Outlook follow these steps:

    Download update and scan with the free version of malwarebytes anti-malware

    http://www.Malwarebytes.org/MBAM.php

    You can also download and run rkill to stop the process of problem before you download and scan with malwarebytes

    http://www.bleepingcomputer.com/download/anti-virus/rkill

    If it does not remove the problem and or work correctly in normal mode do work above in safe mode with networking

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode with networking with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    ______________________________________________________________________

    If you use Hotmail:

    I'm sorry, but we cannot help with hotmail problems in these forums in response to vista

    Please repost your question in hotmail in the hotmail link below forums

    http://windowslivehelp.com/product.aspx?ProductID=1

  • Emails sent from thunderbird arrive to spam, very well arrive sent e-mail web host.

    I use 1and1 hosting for a provider of e-mail company website and the company. When I send emails to gmail accounts using the 1and1 interface they manage very well, but when I send them using thunderbird they arrive at the level of the junk e-mail folder.

    I've confirmed this by sending to several different gmail addresses and company represents several I use in thunderbird. The same as always the case, emails sent to gmail via thunderbird are sent to spam, but those who are sent directly from 1and1 arrive perfectly.

    Is there a setting in thunderbird that is causing this problem? I have tried Turing on and outside, anti-spam and antivirus put in mail electronic provider 1and1 but to little effect. Thank you in advance.

    When you send via webmail goes directly from 1 & 1 webmail server.
    When you send via thunderbird it goes via the smtp server.

    It is possible that gmail is down your IP address that sends spam.
    Try changing your IP address to test.

    The SMTP server associated with the host of your domain, it is possible that the IP of your host (or range of IP addresses) can be on the black list of one or more of the known spam servers, based on other users of the same service.
    A search on the web for the blacklist of email server will give you several sites that you can use to determine if your server is on ordinary black lists.

    Send via webmail could pass through completely different servers with different IP numbers explaining why these emails are not be marked as spam.

    Select e-mail to have it displayed in the messages pane.
    Click on "More" and select "view source".
    In the headers of messages that have been classified as spam, you can find the header information of spam by the mail scanner which has classified the message as spam, which may help to establish what is mark as spam.

  • Link to my psge email sent by mistake-how the stop open?

    I sent an email with a string of previous exchanges of e-mail copied to it. By mistake, a link was sent with him reading the 'documents '. This link opens on my email page Outlook.com . The recipient of the email can access my email by opening the link sent. How can I stop the link to open and access my email when the recipient opens the link? I need to change my email address? I have a setting that blocks?

    Hi Tzannes, firefox is a browser and does not handle your emails. in order to get an answer to this question, you will need to contact support for outlook instead. Thank you for your understanding!

    Problems with email and how to find help

  • Missing "Go" field emails sent through Thunderbird 38 email address

    I had problems with emails sent through two addresses using different servers set up on Thunderbird do not arrive with their e-mail address of the sender. This happens only for the update for Thunderbird 38. I reinstalled 37 and hopefully, updated using 'Help' "on Thunderbird" and the problem is recurring. I have not tried to install 38 directly to a download. It doesn't happen when I send using GMail in Thunderbird, GMail systems probably insert the correct information.

    You can file a bug for this in Bugzilla, but try safe mode first. Hold the SHIFT key when you start Thunderbird. Just in case where there is an add-on that does not have the update.

  • Emails sent to the printer are readjusted "undeliverable".

    Printer HP Photosmart wireless home more B210 connected to the network.

    We have recently updated the broadband router and changed.  Since the upgrade of the printer works fine when printing directly from a PC or a laptop on the network - however, e-mails sent to the printer remotely have now returned "undeliverable" even though the printer email address has been entered correctly.   The printer frequently now also displays a message asking me to put it off and then on again.

    In addition to a new router upgraded, we reinstalled the printer and the e-mail address has changed - but the problem occurred before the change of e-mail address.

    We tried all the trouble shooting usual tools and have no idea of what happens here. Any help gratefully received!

    Sorted! Thank you!!!

  • My home server is talktalk and have got a dongle 3 which won't allow me to emails sent

    Original title: my home server is talktalk I'm away from home has got a dongle 3 and can not sent e-mailsNetwork network networking Internet Web site Site Web URL Web Site programs

    my home server is talktalk I am away from home and got a dongle 3 which won't allow me to emails sent

    Hi Patriciarafferty,

    1. What mail client do you use?

    2. what happens when you try to send email? You receive messages or error codes?

    You can view the following support TalkTalk article and see if it helps.

    I have problems sending and receiving emails, what should I do?

    Hope this information is useful.

  • I can't delete emails or emails sent to delete.

    It is a recent phenomenon.  Outlook Express will not let me delete unwanted emails or remove things in the sent folder.

    You have the corruption of files dbx in more than one place.
     
    Spend most of your messages out of the Inbox (if you can) and move messages you want to record off the deleted items and sent in local folders, items create you. Locate the OE message store and then close OE.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, the files of user OE (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.
     
    With OE closed, find the Deleted Items.dbx and Sent Items.dbx files and delete them. New files will be created automatically when you open OE.
     
    Compact all folders as described below.
     
    ****************************************************************************
     
    To avoid this in the future:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the processors and causes a multitude of problems such as time-outs and account setting changes. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3
  • When sending emails with Outlook Express, they sit in the Outbox and don't move to sent items.

    My system is XP Microsoft w/Internet Explorer 7.  My online service is through netzero.  I started having problems several weeks ago about my Outlook Express.  In the last whe I send a file, he crossed for recipients and also would go directly to my sent folder.  Now adays, occasionally, the info is sent to recipients but does not go to my sent folder and the express pointed out a mistake and put my email in the Outbox.  I have to move it to project from the Outbox folder or the system keeps trying to return.  He goes to the recipients, but not in my sent folder.  What's wrong?

    original title: Microsoft Outlook Express

    You have apparent dbx file corruption.

    Spend most of your messages out of the Inbox and then create new folders to send and sent items box after having moved the messages you want to save to a local folder that you create.

    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.

    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.

    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.

    After you're done, followed by compacting your folders manually while working * off * and do it often.

    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.

    General precautions for Outlook Express:

    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.

    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095

    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3

    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm

    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.

    Compact often as specified above.

    And backup often.

    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx

Maybe you are looking for

  • How to reset the sensor of fingerprint on Portege R700-174?

    Hello! my "problem": on my portege (r700-174), I run a win7 (which was preinstalled on your laptop), a victory for 8.1. and for some is true the technical preview of win10 all systems are protected by password and fingerprints. also the win10-test sy

  • Sometimes windows will not load properly

    Have Windows 7 on a laptop. Most of the time (not always) when opening upward he says "Windows has been closed in anticipation and I don't know why! I stopped it the same way every night - sometimes it loads well and sometimes it doesn't. I have to p

  • How to delete columns from a table

    Hello I have a 2D chart composed of 12 columns. I want to just use the first three columns within LabView. What is the best way to extract the data from these three columns? Greetings Kristoffer

  • Note 'non connected' returns a lot, even if the printer is connected. What is going on?

    For a month, my printer HP don't printregularily any more, or sporadically. I've done obviously, turning works, but I always get the message "not connected". We live in a dusty, if the printer has collected too much dust in a year? We used to have th

  • Should what code I use in a Batch file to give administrator privileges?

    Original title: Administrative Annie I do a batch program in win 7 that can block a player but if run this file does not block my drive. But if I run this file as an administrator, then it blocks my drive. So can u tell me how to get administrative p