Java mail overhead -- need help

I am using javamail to send out email with attachments, but I found a heavy overhead using it. The file I am going to attached to mail is 13MB, but after I build MimeMessage object, it becomes 18MB. The following is piece of my code, any help is appreciated.
public static void send(String host, String to, String from, String subject, String message, Collection fileNames) throws GLPMException {
// create some properties and get the default Session
Properties props = System.getProperties();
props.put("mail.smtp.host", host);
Session session = Session.getDefaultInstance(props, null);
session.setDebug(false);
try {
// create a message
MimeMessage msg = new MimeMessage(session);
if (from != null) {
if (!from.trim().equals("")) {
msg.setFrom(new InternetAddress(from));
InternetAddress[] address = InternetAddress.parse(to, false);
msg.setRecipients(Message.RecipientType.TO, address);
if (subject != null) {
msg.setSubject(subject);
// create and fill the first message part
MimeBodyPart bodyPart = new MimeBodyPart();
if (message != null) {
bodyPart.setText(message);
Multipart multiPart = new MimeMultipart();
multiPart.addBodyPart(bodyPart);
// attach the files to the message
if (fileNames != null && !fileNames.isEmpty()) {
Iterator fileNameI = fileNames.iterator();
while (fileNameI.hasNext()) {
String fileName = (String) fileNameI.next();
MimeBodyPart bodyPart2 = new MimeBodyPart();
FileDataSource fds = new FileDataSource(fileName);
bodyPart2.setDataHandler(new DataHandler(fds));
bodyPart2.setFileName(fds.getName());
multiPart.addBodyPart(bodyPart2);
// add the Multipart to the message
msg.setContent(multiPart);
// set the Date: header
msg.setSentDate(new Date());
// check message size before send out, if it is greater than 15M
// populate warning message to user.
ByteArrayOutputStream bais = new ByteArrayOutputStream();
msg.writeTo(bais);
logger.log(Level.FINEST, "message's size " + bais.size());
if (bais.size() > 15 * 1024 * 1024) {
GLPMExceptionMessage exceptionMsg = new GLPMExceptionMessage(
GLPMExceptionType.WARNING, IErrorConstant.EMAIL_OVERSIZE_MSG);
throw new GLPMException(exceptionMsg, GLPMExceptionType.WARNING);
// send the message
Transport.send(msg);

Open the pdf file in notepad. If it contains the line drawing characters (������), foreign characters or little boxes, it is 'binary'. Text is considered to be characters 1-127. The line characters and foreigen characters and boxes are 128-255. PDF's are 'binary' in this sense. They will have to be encoded. A common standard is MIME64 encoding which you are using.
Read more here.
http://www.winnetmag.com/Articles/Index.cfm?ArticleID=4913

Similar Messages

  • A erase my e mail account, need help pls

    a erase my e mail account, need help they werw my job e MAIL

    It's a disgraceful failure of any customer service by BT.  Had my Btinternet email account since they launched backin ... was it 1997?  Everything digital in my life is spidered into the account now.  Its been used as my registration point for virtually everything for the past fifteen years.  And now getting less than 30 days notice to try and find every single product and website I have registered with and then change all my details?!?!?  Hell, I'd need about a year to do so; and then I would still probably have missed some!  By their actions, they potentially cutting me off from products that I have purchased & tied to this email address.
    Add to that the fact that their email that comes into your inbox sources from some dodgy 'analytics planning' website, as all the links route through there... I had serious doubts as to its legitimacy and forwarded it to their abuse contact & opened a case regarding it.  Highly unprofessional of them - especially when you consider that we are repeatedly advised by BT to never click on links unless we are sure of their validity.  And should never, ever, enter our account details on any other site other than theirs.
    Shoddy BT, very very shoddy.  I would expect a higher standard of business from such a company.  And would definitely expect a proper notification click through to come up regarding this service change when I log into email.  I would say a good proportion of their users will deregard the email as a phishing attempt.  **bleep** cowboy operation.

  • Java Mail set up HELP

    I am trying to set up Java Mail, but am totally lost.
    I have no clue where i edit CLASSPATH, to let me use the mail api, i also read that i needed Java beans activation Network, but that is included in the most recent JDK update which i have.
    If i could just get a step by step on where to edit this that would be great.

    I don't know what JBA is.
    README.txt says:
      1. Unzip the javamail-1_4_1.zip archive. (you may have already done this)
      2. Set your CLASSPATH to include the "mail.jar" file obtained from
         the download, as well as the current directory.
         Assuming you unzipped javamail-1_4_1.zip in c:\download the
         following would work:
          set CLASSPATH=%CLASSPATH%;c:\download\javamail-1.4.1\mail.jar;.
        Also include the "activation.jar" file that you obtained from
        downloading the JavaBeans Activation Framework, in your CLASSPATH.
          set CLASSPATH=%CLASSPATH%;c:\download\activation\activation.jarWhich part of that was confusing?
    Yes, you can download it anywhere and unzip it
    anywhere, but wherever you put it, that's the
    path you have to use when you set CLASSPATH.
    Do you understand?
    Likewise, you have to download the JavaBeans
    Activation Framework, unzip the zip file (anywhere)
    and use the correct path name when setting
    CLASSPATH.
    If it's still not working for you, tell me exactly what
    you did and exactly what happened. Copy and
    paste the text from the command window if possible.

  • Odd mail issues, need help

    A couple of things I need help with.
    1) Mail constantly goes offline and pops up a dialog box asking for my password. I enter my password in the box and hit okay and it doesn't take. I can hit cancel and put mail back online but that's a pain. What is causing that and how do I fix it?
    2) People send me mail and then about 30 min later I get the same email again. This problem doesn't happen with every email, just some.
    I have no mail rules on. and I run virus software and it's fine.
    Can someone please help me on this. Thanks!
    1.25 GHz PPC G4 / 20"   Mac OS X (10.3.9)   768 MB DDR SDRAM, iSight camera, Wacom Tablet

    Open /Applications/Utilities/Keychain Access, choose Keychain First Aid from the application menu, and proceed to repair the keychain. If that doesn’t work, you may try removing the password entry from the keychain and letting Mail create it again.
    Also, in Mail open Help > Mail Help and read the article titled “Mail keeps asking for my keychain password”, in case it applies to you. There is a related article titled “My password is not saved” that you may also want to read, but beware that the last suggestion provided there (deleting the mail account) is wrong and could cause irretrievable data loss if this was a POP account.
    Note that Mail doesn’t always correctly report what the problem really is. If Mail can connect to the server but cannot log into your mail account for some reason, it’ll ask for your password, regardless of whether that’s really the problem or not. Don’t keep entering the password every time, because that’s not the problem (click Cancel instead, and take the account back online afterwards).
    What’s the time interval chosen in Mail > Preferences > General > Check for New Mail? If it’s set to Every minute, try changing it to Every 5 minutes.
    Go to Apple Menu > System Preferences > Network, choose Network Port Configurations from the Show popup menu, and make sure that the configuration used to connect to Internet appears at the top of the list.
    Also, try using a different method to connect to Internet, if possible, or connecting the computer to Internet as directly as possible, i.e. bypassing any routers that might be present, using an ethernet cable instead of wireless, etc., and see whether that makes a difference.
    BTW, if you’re using Mac OS X 10.3, as your profile indicates, it would have been more appropriate to discuss this in the Mail & Address Book - Mac OS X 10.3 & earlier forum. If the discussion applies to both Mail 1.x and Mail 2.x, it doesn’t really matter, but it’s difficult to know that in advance.

  • Java not working, need help from the pros!!!

    Whenever i go to a website that uses java (like runescape), the window that has the java is all white screen and on the top left side there is a little sheet of paper with a folded corner with a red X on it.
    Java doesn't work, please i need help!
    i am sure i have the current version
    i think it may have something to do with a failed classloader (maybe)

    when i click on the red X, and go java consol, this is that appears:
    +Java Plug-in 1.5.0+
    +Using JRE version 1.5.0_13 Java HotSpot(TM) Client VM+
    +User home directory = /Users/***********+
    +c: clear console window+
    +f: finalize objects on finalization queue+
    +g: garbage collect+
    +h: display this help message+
    +l: dump classloader list+
    +m: print memory usage+
    +o: trigger logging+
    +p: reload proxy configuration+
    +q: hide console+
    +r: reload policy configuration+
    +s: dump system and deployment properties+
    +t: dump thread list+
    +v: dump thread stack+
    +x: clear classloader cache+
    +0-5: set trace level to <n>+

  • Java Mail Program - Please Help!

    Hi everyone, I am new to Java (been learnig for about 6 months) and I was hoping you could help me.
    I would like to write a program to be able to send and receive email (a basic version of outlook express), the prblem is that i have no idea on how to start such a program as i have only written programs such as calculators before.
    I was hoping someone could tell me how to begin such a challenging program, which java package is best to create such a program, Jbuilder or the normal javac compiler.
    Thanks everyone for your help

    See the Java mail API for more details (javax.mail if I remember well). This can be found at:
    http://java.sun.com/products/javamail/index.html
    Hope it helps,
    Stephane

  • Im a newbie in java and i need help. im a student

    im an I.T student in Adamson University here in the philippines i went here to ask help about our activity in school about java. our professor told us to make a program in java (btw were using netbeans) that will ask the user his birth year and then the output will tell the zodiac sign of the year entered. she told us (our prof) to make it using showInputDialog. and then to show the output we must use the JOptionPane.showMessageDialog.
    i try to do it but i found myself in trouble bcoz im new in java.
    i try to to it and here's what i did
    import javax.swing.JOptionPane;
    public class Zodiac;
    public static void main(String args[])
    String name=JOptionPane.showInputDialog("Enter your year of birth?");
    String message=String.format("Your zodiac sign is tiger");
    JOptionPane.showMessageDialog(null,message);
    i knew that i need to use conditional statements here but i dont know where to put it and how to declare the JOptionPane.etc.
    pls help me asap im a newbie.

    as you wish heres what i did. this is not a gui version
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package marlonestipona;
    * @author ESTIPONA
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {
    Scanner input = new Scanner(System.in);
    int yr1;
    String tgr ="Tiger";
    String dog ="Dog";
    String rbt ="Rabbit";
    String ox ="Ox";
    String drgn ="Dragon";
    String rat ="Rat";
    String pig ="Pig";
    String rst ="Rooster";
    String hrs ="Horse";
    String shp ="Sheep";
    String mky ="Monkey";
    String snk ="Snake";
    System.out.print("Enter your birth year: ");
    yr1=input.nextInt();
    if (yr1==1974 || yr1==1986 || yr1==1998)
    System.out.printf("Your zodiac sign is %s!\n",tgr);
    }else if (yr1==1982 || yr1==1994 || yr1==2006){
    System.out.printf("Your zodiac sign is %s!\n",dog);
    }else if (yr1==1975 || yr1==1987 || yr1==1999){
    System.out.printf("Your zodiac sign is %s!\n",rbt);
    }else if (yr1==1973 || yr1==1985 || yr1==1997){
    System.out.printf("Your zodiac sign is %s!\n",ox);
    }else if (yr1==1976 || yr1==1988 || yr1==2000){
    System.out.printf("Your zodiac sign is %s!\n",drgn);
    }else if (yr1==1972 || yr1==1984 || yr1==1996){
    System.out.printf("Your zodiac sign is %s!\n",rat);
    }else if (yr1==1983 || yr1==1995 || yr1==2007){
    System.out.printf("Your zodiac sign is %s!\n",pig);
    }else if (yr1==1981 || yr1==1993 || yr1==2005){
    System.out.printf("Your zodiac sign is %s!\n",rst);
    }else if (yr1==1978 || yr1==1990 || yr1==2000){
    System.out.printf("Your zodiac sign is %s!\n",hrs);
    }else if (yr1==1971 || yr1==1991 || yr1==2003){
    System.out.printf("Your zodiac sign is %s!\n",shp);
    }else if (yr1==1980 || yr1==1992 || yr1==2004){
    System.out.printf("Your zodiac sign is %s!\n",mky);
    }else if (yr1==1977 || yr1==1989 || yr1==2001){
    System.out.printf("Your zodiac sign is %s!\n",snk);
    } else
    System.out.println("Invalid");
    now my problem is how to turn this whole code into gui using those dialog boxes.

  • How to attach a word file in JAVA mail? Please help

    I am a JAVA rookie and I have problem attaching a word file using javamail. I searched almost all the forum but still couldn't find the solution.
    Sorry for the reposting. But can anybody please help me out? Your any words or links will be highly appreciated!
    Lakobe

    If you want to include an attachment with your message, you need to build up the parts, quite literally, because the name of the applicable interface is Part. The content of your Message will consist of multiple parts within a Multipart object. Part one of the message is a BodyPart that contains the message content. Part two of the message is a BodyPart that contains the attachment. The attachment itself is specified as a DataSource. You don't have to actually read the attachment.
    You start in the same way as you do for a message without an attachment. Create the message from the session and initialize the headers:
    Message message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    message.setSubject("JDC Attachment");
    However here you need to create the Multipart object:
    Multipart multipart = new MimeMultipart();
    For part one, create a BodyPart and set the text to be a message. Then, add the BodyPart to the Multipart you just created.
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText("Here's the file");
    multipart.addBodyPart(messageBodyPart);
    For part two, you need to create a BodyPart again, but this time you need to create a DataSource for the file.
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(filename);
    Use a DataHandler object to attach the data source to the message. Simply create a DataHandler for the source and attach it to the message:
    messageBodyPart.setDataHandler(
    new DataHandler(source));
    Remember to set the filename of the attachment. This permits the recipient to know the name (and type) of the received file.
    messageBodyPart.setFileName(filename);
    Attach part two in the same way as part one:
    multipart.addBodyPart(messageBodyPart);
    And as a final step before sending, attach the Multipart to the Message:
    message.setContent(multipart);

  • Java mail and jsp -HELP!! HELP!!

    Hi all
    I have a simple email module with a jsp page and a html page I am trying to connect to a yahoo smtp server and send a mail from the webpage to the smtp server - I am getting an Authentication required error.
    error ##
    org.apache.jasper.JasperException: Sending failed;
    nested exception is:
         class javax.mail.MessagingException: 530 authentication required - for help go to http://help.yahoo.com/help/us/sbc/dsl/mail/pop/pop-11.html
    Can anyonne tell me how to use a simple smtp email facility
    how to use an authenticator in the jsp
    ciao
    laodingdockjavaguy

    It's required that you authentificate yourself at the smpt server
    The following snipplet sends a msg using the smtp protocol.
    Transport tr = session.getTransport("smtp");
    tr.connect(smtphost, username, password);
    msg.saveChanges();     // don't forget this
    tr.sendMessage(msg, msg.getAllRecipients());
    tr.close();If this still fails You can also try to set the property mail.smtp.auth to true.
    mail.smtp.auth      boolean      If true, attempt to authenticate the user using the AUTH command. Defaults to false.see also http://java.sun.com/products/javamail/1.3/docs/javadocs/com/sun/mail/smtp/package-summary.html
    for a complete description of the properties supported by the smpt transport.
    hope it helps

  • JAVA 101: I need help with the terminology !

    WARNING: Long post, lots of silly questions. But It might help a
    lot of people.
    Hello,
    I'm having a tough time understanding BASIC JAVA technology in
    general and the way it is used to deploy web forms. Apart form
    the marketing droid stuff (Easy to install, works just fine,
    etc..), Oracle does not give any documentation about what gets
    installed and how the technology works with respect to oracle.
    I don't want to learn the JAVA language, I don't need it in my
    job. But I'd like to be able to determine what might be
    hapenning when oracle crashes and I'd like to know what to tell
    me developpers when they ask me what's available etc.. For
    example, if one of my developpers wants to work with java beans
    I have 2 problems:
    a) I don't have any idea about what a Java bean REALLY is
    b) I don't even know how oracle works with it and where to
    install the beans I could download.
    I need a terminology guide. What is a class ? whis is ewt ? How
    can I extend the java code that oracle gives us ? Is it
    possible ? Where do I start ?
    Looking at the $ORACLE_HOME/forms60/java/forms directory, I can
    see that all that is under this directory seems to be some kind
    of java objects (with dots in it, etc..) am I right ? At least
    when the java applet console is running, the messages that pass
    accross seems to relate to this directory in some way...
    What about the ewt directory ? What is it used for ? Do I really
    need it to deploy java web forms on the web ? Which product
    installed this directory ?
    What if I use jinitiator, do I still need the JDK (JDK or JRE ?)
    or is it "bundled" under the jinitiator directory somewhere ?
    What is JRE ? Is is installed by Sun's JDK, oracle's JDK or
    Jinitiator ? Applet viewer ?
    What about the BASIC virtual machines that come with the
    browsers (IE and Netscape) ? Do they need the JDK ? Where do
    they install their stuff ? Can they conflict with oracle's ?
    Can there be more than one JDK installed on my windows machine
    without me knowing ? In what registry keys to the JDK/JRE stuff
    puts stuff ?
    MOST IMPORTANT: How do I TOTALLY get rid of ALL the java stuff
    on my windows clients so I can later perform a FULL reinstall ?
    I think some of our clients are pretty messed up, after
    installing, deinstalling and reinstalling different versions of
    applet viewer, JDK and jiniiator. I'm pretty sure there are some
    pointers in the registry that are wrong (in Netscape, I get a
    lot of error talking about a java "bridge" that's broken, but
    don't know how to fix it or even what it is !)
    I don't think the ORACLE JINITIATOR UNinstall does a good job or
    removing all it installed in the registry and that may be the
    source of the myriads of problems we have with Web Forms.
    We don't know who to blame when a problem occurs in web forms:
    Forms Server ? OAS ? Solaris ? Windows ? Jinitiator ? At lkease
    if we KNOW that Jinitiator is OK...
    Any GOOD documentation explaining the basics (and if possible,
    something putting it in the context of Oracle, stating the
    differences) would be greatly appreciated.
    Thanks for your patience and your time.
    null

    See page 207 of the iPhone iOS4 User Guide

  • New Java Programming Student Needs Help

    Hey everyone,
    I've just started taking a Java programming class at Penn State University, and I have had some prior experience with programming, i.e. C, C++, HTML, SQL. However, this will be my first attempt at Java. I know there are a lot of similarities between C++ and Java, but I'm still a little lost on some methodology.
    To get myself going, I've been looking through the textbook a little and came across a problem that gave me some difficulty. I'll write out the outline:
    A company pays its employees as managers (who receive a fixed weekly salary), hourly workers (who receive a fixed hourly wage for up to the first 40 hours they work and time and a half (i.e. 1.5 times their hourly wage) for overtime hours worked, commission workers (who receive $250 plus 5.7% of their gross weekly sales), and pieceworkers (who receive a fixed amount of money per item for each of the items they produce � each pieceworker in this company works on only one type of item).
    +Define a Java class named EmployeePayment that includes functionality to compute the weekly pay for each employee. You do not know the number of employees in advance. Each type of employee has its own pay code: Managers have paycode 1, hourly workers have paycode 2, commission workers have paycode 3 and pieceworkers have paycode 4.+
    +Define a main method that creates an instance of the EmployeePayment class, and calls the setManagerPay method to set the managers weekly salary to $625.00. The main method should then prompt the user for the paycode ��Enter paycode (-1 to end): �, validate the input and perform the associated processing for that paycode. Your program should allow the user to process employees until a paycode of -1 has been entered. Use a switch structure to compute each employee�s pay, based on the employee�s paycode. Within the switch, prompt the user (i.e. the payroll clerk) to enter the appropriate facts your program needs to calculate each employee�s pay based on that employee�s paycode, invoke the respective method (defined below) to perform the calculations and return the weekly pay for each type of employee, and print the returned weekly pay for each employee.+
    +Define a setManagerPay method that accepts and stores the fixed weekly salary value for managers.+
    +A private instance variable weeklyManagerPay should be defined in the EmployeePayment class to support these accessor and mutator methods.+
    +Define a calcManagerPay method that has no parameters and returns the fixed weekly salary.+
    +Define a calcHourlyWorkerPay method that accepts the hourly salary and total hours worked as input parameters and returns the weekly pay based on the hourly worker pay code description.+
    +Define a calcCommWorkerPay method that accepts the gross weekly sales as an input parameter and returns the weekly pay based on the commission worker pay code description.+
    +Define a calcPieceWorkerPay method that accepts the number of pieces and wage per piece as input parameters and returns the weekly pay based on the piece worker pay code description.+
    +Once all workers have been processed, the total number of each type of employee processed should be printed. Define and manage the following private instance variables (*numManager*, numHourlyWorker, numCommWorker, and numPieceWorker) within the EmployeePayment class. What are the ways in which these variables can be updated?+
    Sorry for the length, but I wanted this to be thorough. Basically, I'm having the most trouble writing the switch statement, and outputting the total number of each type of employee...
    Any help and pointers will be greatly appreciated...thanks all.

    You said you've written C and C++ code before. I don't have an excellent memory but from the little code that I wrote in C, I believe the switch statement is exactly the same.
    Read this: [http://java.sun.com/docs/books/tutorial/java/nutsandbolts/switch.html]
    If you're having trouble understanding something post what your specific problem is. No one is going to write your homework for you, but many, myself included, would be more than willing to help if you're really stumped. Just post your concise problem.
    Edited by: sheky on Mar 12, 2008 9:52 PM

  • Incoming mail blocked need help

    hello, all, I cannot receive email on the wifi servers at work, they block all email coming and going. As I recall, there is a program/service that allows you to receive and send mail from wifi servers, even blocking servers, something like auth smtp. However, their website says they can only send email, not receive email. Since I don't have 3G, need to receive email via wifi, any suggestions? thanks

    Thank you very much Weth. I do have a current active Verizon account, with my iPhone 4S active on this account. Do I just need to call Verizon from Costa Rica to ask them again to unlock my phone? Is there a special number to call at Verizon to unlock phones? Thank you again. This is helping.

  • Cox mail issues- need help

    I have had my Iphone for 10 days and I still can't send mail through Cox (my provider). I have been able to receive email, but never send.
    Error message: Cannot Send Mail
    connection to the serve failed.
    Anyone have any ideas for me as to why I can't send, yet I can receive email?
    I have confirmed the server for cox in my region.
    Cox offers no help.

    Then you should probably explore a free GMail account and use their SMTP servers. They work in WiFi and EDGE with no issues. They support Authentication AND SSL. Here are the instructions I followed. They may help you.
    First, create a free GMail account. Once you create it, log into it via the web, and enable POP access under Settings.
    Also under Settings, go to the Accounts tab and add your COX email address as an authorized account. GMail will validate that account by sending you an email with a verification code. Retrieve the email and code, and enter it when prompted by GMail, and that will allow you to use GMail's outgoing server with your COX ID as an reply-to address.
    Next, go to your iPhone. I suggest you delete and recreate the account from scratch.
    1. I went into Settings / Mail / Add Account and chose OTHER.
    2. I chose POP, then put my name under NAME, my custom ID ([email protected] in your case your COX ID) under ADDRESS, and "COX Email" under description. (The important thing here is to use your custom address, not your GMail address).
    3. Under incoming server, I put pop.myserver.com (your COX pop server), and my login ID and password (again, your COX ID and password).
    4. Under outgoing server, I put smtp.gmail.com, [email protected], and my Gmail password. This is the only spot you need your GMail account and password.
    5. I hit save.
    Done. SSL and authentication are automatically set. I just tested it and sent myself an email, and it went out and came back as [email protected]
    I think deleting the account you have now and recreating it should do the trick. You dont even have to delete your old account - just turn it off, and create a new one to test.

  • Mail Crashes-Need help to resolve

    Here is the details from my Mail Account:
    Process: Mail [1277]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 4.2 (1077)
    Build Info: Mail-10770000~4
    Code Type: X86-64 (Native)
    Parent Process: launchd [89]
    Date/Time: 2010-01-18 13:55:17.829 -0800
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 70824 sec
    Crashes Since Last Report: 38
    Per-App Interval Since Last Report: 3297 sec
    Per-App Crashes Since Last Report: 38
    Anonymous UUID: 8CE0E46C-0D1C-418A-87CD-3303C9BD2275
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000001
    Crashed Thread: 8 Dispatch queue: com.apple.root.default-priority
    Application Specific Information:
    -[IMAPAccount fetchSynchronouslyIsAuto:]
    -[POPAccount fetchSynchronouslyIsAuto:]
    -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff81b32e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81b334ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff820e17a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff820e0c2f CFRunLoopRunSpecific + 575
    4 com.apple.HIToolbox 0x00007fff844cca4e RunCurrentEventLoopInMode + 333
    5 com.apple.HIToolbox 0x00007fff844cc853 ReceiveNextEventCommon + 310
    6 com.apple.HIToolbox 0x00007fff84516cd1 IsUserStillTracking(MenuSelectData*, unsigned char*) + 175
    7 com.apple.HIToolbox 0x00007fff845039dc TrackMenuCommon(MenuSelectData&, unsigned char*) + 3355
    8 com.apple.HIToolbox 0x00007fff844ffc7c MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 328
    9 com.apple.HIToolbox 0x00007fff844ff461 _HandleMenuSelection2 + 453
    10 com.apple.AppKit 0x00007fff87009b79 _NSHandleCarbonMenuEvent + 236
    11 com.apple.AppKit 0x00007fff86fdd6a2 _DPSNextEvent + 1908
    12 com.apple.AppKit 0x00007fff86fdcb41 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    13 com.apple.AppKit 0x00007fff86fa2747 -[NSApplication run] + 395
    14 com.apple.AppKit 0x00007fff86f9b468 NSApplicationMain + 364
    15 com.apple.mail 0x0000000100002150 0x100000000 + 8528
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff81b4bbba kevent + 10
    1

    If you need more help after Michaels helpful tip, try a new post in the 10.6 Mail forum.
    DALE

  • Cap on Mail? Need help, important

    Ok, so I have a gmail account and so does my business partner. I have been working on a single photoshop file that is about 128MB. I am trying to send it to him via e-mail, but I keep getting two problems. Either I keep getting a message from Mail at the bottom of my e-mail saying that my e-mail message is too big, can only be 15 MB or so. Or I get the message that it can not connect to my out going server. I have tried about 6 different networks with different SMTP's. Keeping in mind that normal sized e-mails are going through with out a hitch.
    Any help would be greatly appreciated.
    Thanks in advance
    -Tim

    Nothing to do with Apple mail - it's the amount of data a service provider will allow you to send as an email - 128Mb is huge. It's a bit like putting a load of stamps onto a sofa and then trying to get it into a mail box - they won't take it.
    Email was never designed for large scale file transfer. Your possibilities are to upload the file to a free or paid for file hosting site - .mac for example will you to post a file for others to download, or to split the file into manageable chunks - using something like machacha and sending those by email. your recipient can then put them back together at the other end.
    Have a think about it and if you need more advice, come back.
    Good luck.

Maybe you are looking for

  • How do I change my settings so when I delete email from my iPhone, it also deletes from my Macbook?

    I've found a couple of pages online where it states: In Settings, select Mail, Contacts, Calendars. Select the account for which you wish to change the settings. Select Advanced, located at the bottom of the list. Select the Delete from server option

  • Preview displays pdfs with distorted colours and thin white line on the border

    Preview Version 7.0 (826.4) on 10.9.5 displays pdfs with cmyk images in it in distorted colours and thin white line on the border of the page despite in the original .indd file the image runs into bleed. The display errors aren't present in acrobat r

  • Document Setup size change-frame defaults to centering

    In ID CS3, by default I have my Reference Point set to the upper left. I often get a repeat layout that may have a size change. If I originally had a 3"x5" ad and the repeat calls for a 4"x7", I reset the document setup. The frame goes to the left (0

  • SOAP Adapter details

    hi all, i am doing R/3>PI1>PI2-->File scenario.(i am working at PI2) here i am importing the XSD's into PI2 through External definitions,for this what SOAP Adapter details i need to provide to PI1. another interface File>PI2>PI1-->R/3 for this scenar

  • Images quality in Pages

    Has anyone else had trouble getting an image in pages to display in good quality?  Placing an image at the top of a page that is about 3x2 displays very blurry, especially when viewed in iwork online.  Any help is greatly appreciated!!