Trying to implement a mail queue

I'm trying to implement a very basic mail queue using ExecutorService and a Callable split into a producer which builds the email and an email queue and a consumer to send the queued message out but I keep getting:
java.lang.NullPointerException
     at javax.mail.Transport.send(Transport.java:97)
     at org.bedework.mail.sendMail.call(sendMail.java:45)
     at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
     at java.util.concurrent.FutureTask.run(Unknown Source)
     at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
I'm not sure how to get the transport variable passed across and read by the consumer thread.
The consumer code is:
public class sendMail implements Callable<Object> {
     private ArrayBlockingQueue<Object>  queuedMail;
     private Transport trans;
     private MimeMessage msg;
     private Logger log = Logger.getLogger(sendMail.class);
     public sendMail (ArrayBlockingQueue<Object> queuedMail, Transport trans) {
          this.trans = trans;
          this.queuedMail = queuedMail;
     public Object call() throws Exception {
          try {
               queuedMail.poll();
               synchronized (queuedMail) {
                  if (queuedMail.isEmpty()) {
                     queuedMail.wait(1000);
               try {
                    trans.send(msg);
                    Thread.sleep(1000);
               } catch (Exception e) {
                    e.printStackTrace();
          } catch (Exception e) {
               e.printStackTrace();
          return null;
}The code that calls it is:
tr = sess.getTransport(config.getProtocol());
        pool.submit(new buildMail(sess, cal, originator, to, subject));
        pool.submit(new sendMail (mailqueue, tr));I'd be grateful for any pointers in getting this sorted out.

First, read this FAQ item:
[http://java.sun.com/products/javamail/FAQ.html#send|http://java.sun.com/products/javamail/FAQ.html#send]
Then explain to me how "msg" is ever set in your sendMail class.

Similar Messages

  • Implementing a mail queue using ArrayBlockingQueue

    I'm trying to implement a mail queue using an ArrayBlockingQueue but seem to only be able to send the list address; so if I have mail for foo, bar and baz, only baz is being emailed but not foo and bar. I'd be grateful for a pointer as to how to get it returning the whole list.
    public class buildMail implements Callable<MimeMessage> {
         private Logger log = Logger.getLogger(buildMail.class);
         private MimeMessage msg;
         private Calendar cal;
         private String from;
         private String subject;
         private Session sess;
         private HashSet<String> members;
         private Transport tr;
         private ArrayBlockingQueue<MimeMessage> mailqueue;
         public buildMail(Session sess, Calendar cal, String from, HashSet<String> members, String subject, Transport tr) {
              this.sess = sess;
              this.cal = cal;
              this.from = from;
              this.members = members;
              this.subject = subject;
              this.tr = tr;
         public MimeMessage call() {
              mailqueue = new ArrayBlockingQueue<MimeMessage>(20);
              try {
                   //iterating through the members array to create individual messages for sendMessage
                   for (String to: members) {
                   msg = new MimeMessage(sess);
                   msg.setFrom(new InternetAddress(from));     
                         msg.setRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(to));
                      msg.setSubject(subject);
                         msg.setSentDate(new Date());
                         CalendarOutputter co = new CalendarOutputter(false);
                         Multipart multipart = new MimeMultipart();
                         MimeBodyPart messageBodyPart = new MimeBodyPart();
                         Writer wtr =  new StringWriter();
                         co.output(cal, wtr);
                         String content = wtr.toString();
                         messageBodyPart.setDataHandler(new DataHandler( new ByteArrayDataSource(content, "text/calendar")));
                         multipart.addBodyPart(messageBodyPart);
                   msg.setContent(multipart);
                   log.info("Offering " + msg + "to mail queue going to " + to);
                   mailqueue.put(msg);
                   log.info("Mail Queue is " + mailqueue.size());
                   sendMessage(mailqueue);
              } catch (Exception e) {
                   e.printStackTrace();
              return msg;
           }//end run
         public Object sendMessage (ArrayBlockingQueue<MimeMessage> mailqueue) {
              try {
                   tr.connect();
              } catch (MessagingException mex) {
                   mex.printStackTrace();
              while (!mailqueue.isEmpty()) {
                   try {
                        mailqueue.remove();
                        tr.sendMessage(msg, msg.getRecipients(javax.mail.Message.RecipientType.TO));
                        log.info("Sending message ");
                        Thread.sleep(500);
                        if (mailqueue.isEmpty()) {
                             tr.close();
                             log.info("mailqueue is empty");
                             break;
                   } catch (Exception ie) {
                        ie.printStackTrace();
              while (mailqueue.isEmpty()) {
                   try {
                        tr.close();
                        mailqueue.poll(250, TimeUnit.MILLISECONDS);
                   } catch (Exception e) {
                        e.printStackTrace();
              return null;
    }//end buildMailThe size of the mail queue and the previous line suggest that the foreach loop is putting the entire list into the queue but only one email is ever returned.

    if I have mail for foo, bar and baz, only baz is being emailed but not foo and bar.this
    mailqueue.remove();
    tr.sendMessage(msg, msg.getRecipients(javax.mail.Message.RecipientType.TO));where msg is the last one which comes from "call" method the "msg" reference variable has the scope of class variable so I guess it is teh last one which is "baz"
    you want to empty the mailquque and you are not assigning it to a variable to be send
    such as
    MimeMessage myMsg = mailqueue.remove();
    and
    tr.sendMessage(myMsg,...);
    Then what was the reason behind waiting for a timeout period after check the quque if it is empty and then try to poll ( blocks until timedout)
    is there a reason behind the below
    while (mailqueue.isEmpty()) { // is there another thread tries to populate the queue when it gets empty
                   try {
                        tr.close();
                        mailqueue.poll(250, TimeUnit.MILLISECONDS); // here
                   } catch (Exception e) {
                        e.printStackTrace();
              }Regards,
    Alan Mehio
    London,UK

  • How  to look at mail queue

    I have installed Collaboration Suite 9.0.3, and am curious to know how to look at the mail queue on the OCS server, and more specifically, how do I delete emails in the queue? Somebody apparently found us during the installation of this server before I could lock it down with spam rules, and I have a ton of junk emails stuck in the queue that won't go anywhere. How do I get rid of those messages? They are literally using up the server resources after about 5 hours of the server trying to send them.
    Thanks,
    Michael

    Well, I guess that's part of the problem too. I'm not sure I have emails in the queue. I have the OCS server set up with the relay host set to another server on the network running sendmail. If I stop the smtp_out service on the OCS server, and then start it again, I see a bunch of messages being sent to the relay server to be delivered, most of them spam as far as I can tell. The sendmail server is set to reject those messages, so it does not try to deliver them and therefore does not put them in the queue on that server. However, regardless of restarting smtp_out, restarting Unified Messaging, restarting OCS, or restarting the entire server, those messages continue to remain in what I'm assuming is the queue on the OCS server. Does that make any sense? From what I can get from the documentation, they must be sitting in the mailstore database somewhere, and I'm wondering if there is a query I can run to at least look and see what is there, and preferable delete them. Otherwise, I guess I have to wait 5 days for the server to finally give up.
    Any ideas?
    Thanks,
    Michael

  • My gmail account is no longer available on my iPad 2 in the mail queue at the bottom. How can I reset it?

    This morning when I opened my iPad to check my email, the mail queue at the bottom was blank when I opened it. Upon further tries of trying to reset, it keeps telling me it can verify and that if I save the info submitted, it may not be available to me. How do I go back to yesterday when it worked?

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Does it go through properly this time?

  • Server Admin- Mail queue is this before or after its been checked as spam?

    Hi we have been bombarded with shed loads of junk causing the mail queue to swell and slow down considerably almost to a halt. I have now created the junkmail account and the notjunkmail accounts and now trying to teach the server to sort itself out.
    However in the queue we have MADEUP [email protected] and Im deleting these manually as i cant mark these as junkmail. Will the server once taught, be able to distinguish between the real users and the made up ones?
    Also is what is in the queue is this after the filtering or what will be filtered?
    Thanks Hope this makes sense.
    Oh and if any one knows any great bolt on gui spam filters for mac server 10.4 id appreciate your advice... Thanks

    Sieve scripting is built in.
    Example vacation email script, forwarding and junk-mail processing are included in the Command Line manual.
    Some URLs...
    http://www.ietf.org/rfc/rfc3028.txt
    http://nfs-uxsup.csx.cam.ac.uk/~fanf2/hermes/doc/sieve/
    As for Postfix:
    http://www.stepwise.com/Articles/Workbench/eart.index.html
    http://www.cutedgesystems.com/software/PostfixEnabler/

  • Mail Stuck in Mail Queue

    This weekend, I did a clean install on my Apple OS X server (the upgrade from 10.3 to 10.4 introduced some weird behavior, so I wanted to do a clean install 10.4 --> 10.4 to clear out the problems). I used mailbfr to backup my imap datebase and I exported my users and groups from Workgroup Manager.
    I then did the clean install. After applying the software updates and repairing permissions, I used Workgroup Manager to import the old groups and users. Then, I applied all of the old passwords to the user accounts.
    I then used mailbfr to restore the old mail.
    At this point, all of the old mail (backed up by mailbfr) is apprearing fine in the client mail applications, but all new mail is going to the mail queue and is just sitting there. I've tried "sudo postsuper -r ALL" and that just re-queues the mail.
    A typical SMTP message reads:
    Jul 22 22:11:36 mail postfix/qmgr[303]: 979324F446: from=<[email protected]>, size=1750, nrcpt=1 (queue active)
    Jul 22 22:11:36 mail postfix/qmgr[303]: 979324F446: to=<[email protected]>, relay=none, delay=267, status=deferred (delivery temporarily suspended: transport is unavailable)
    For the same message the Mail Queue offers the following detail information:
    Message ID: 4388A4F41B
    Date: Sat Jul 22 22:18:50
    Size: 1892
    Sender: [email protected]
    Recipient(s) & Status:
    [email protected]:
    delivery temporarily suspended: transport is unavailable
    Do you have any of you have ideas as to how I might fix this problem?

    Well ... a big fat nevermind. Sorry about that. I stopped and restarted the server after posting this, and mail started receiving just fine and the queue cleared itself.
    All seems well.

  • Apex Mail Queue stopped sending

    Suddenly the APEX mail queue on our production server has stopped sending emails. We have logged into the internal workspace as ADMIN and can see the emails in the queue. There are no errors against them. We've tried both using the "Send all mails" button and also apex_mail.push_queue() from sqlplus but neither has worked - the emails are just backed up. There are no emails in the sent log with errors.
    The configuration is no different from our development server (ie, same SMTP server, same setup within APEX) and that works fine. We haven't made any changes to anything, it just randomly stopped working the other day.
    We have tried using UTL_SMTP on the prod server and that works fine, so it looks like it's something APEX specific.
    Can anyone offer any advice or help before I raise this as an SR?
    Thanks,
    John

    You should run this query as DBA to see ORACLE_APEX_MAIL_QUEUE job run details.
    This job should run for every 5 min or 3 min depending on your apex version. See the latest run date.
    When you run apex_mail.push_queue; then, it should do the same task what above job does. Pushing the queue didn't help you. So I suggest to raise a SR with Oracle Support.
    Regards,
    Hari

  • Database mail queue stays INACTIVE

    Hello
    I tried for hours to get my notifications working, without success, on SQL Server 2008R2 Web Edition 64b
    I send mail with the test :
    USE msdbGOEXEC sp_send_dbmail @profile_name='ARRIERE',@recipients='[email protected]',@subject='Bonjour ',@body='Congrates Database Mail Received By you Successfully.'
    But this mail seems to be never sent.
    With:
    EXEC msdb.dbo.sysmail_help_queue_sp @queue_type = 'mail';
    The queue state is always INACTIVE, and length is growing everytime I send a email.
    I tried to restart the mail system some times :
    EXEC msdb.dbo.sysmail_stop_sp;
    EXEC msdb.dbo.sysmail_start_sp;
    The states goes RECEIVE OCURRING, but after some seconds and without intervention, it goes back to INACTIVE.
    I tried to rester SQL Agent, SQL Server, the server himself, but no luck.
    The broker is activated (SELECT is_broker_enabled FROM sys.databases WHERE name = 'msdb' ;)
    I disabled every firewall, antivirus and others (by the way, I can do "telnet smtp.domain.tld 25" and send a mail with telnet.
    With
    SELECT * FROM msdb.dbo.sysmail_allitems;
    I see all my mails with state "unsent".
    Nothing logged in Event Viewer, SQL Events, and in sysmail_event_log I only get "Activation successful".
    I configured the local IIS SMTP as a relay as said here : http://social.msdn.microsoft.com/Forums/en/sqldatabaseengine/thread/f9744284-a9b6-4bfb-81b9-c4833f282ad0 
    I cleaned the mails with:
    DECLARE @GETDATE datetime
    SET @GETDATE = GETDATE()
    EXECUTE msdb.dbo.sysmail_delete_mailitems_sp @sent_before = @GETDATE;
    GO
    => Nothing more.
    Can I do something more?
    Thans for your help.
    Regards

    X.Perignon,
    Please check these items:
    1. Checked the SQL Server agent alert sytem configuraion to understand if the Database
    mail is enable or not. Right click SQL Server agent -> properties -> Alert system.
    2. Run sp_configure, check Database mail is enabled. Sample is: Database
    Mail XPs 0 1 1 1
    3. Checked the SQL Server MSDB database for service broker as below:
    select is_broker_enabled,* from sys.databases
    4. Checked the status of the database mail and it is started.
    EXECUTE dbo.sysmail_help_status_sp
    If all above is already configured, please try to:
    1. Create a mail account (domain account) dedicated for DB Mail
    2. Change the SQL service account to the mail account
    Best Regards,
    Iric
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Outgoing mail queue fills with spam

    I remember reading about how to fix this before - but cannot find the details now.
    I have a server that is trying to send mail to non existant domains or non existant e-mail addressed. the mail is not originating from clients.
    Typical entry in the mail queue is
    Message ID: 60D7987570
    Date: Thu Aug 17 06:18:36
    Size: 34446
    Sender: MAILER-DAEMON
    Recipient(s) & Status:
    [email protected]:
    host mail.cncnet.net[210.53.130.195] said: 450 4.1.1 <[email protected]>: Recipient address rejected: User unknown in local recipient table (in reply to RCPT TO command
    how can I sent the mail server up to just ditch this stuff in the first place.
    Tim

    Here is an extract from the logs. I think I understand this now and it works as it should - but perhaps you could confirm.
    This message is clearly not stuck in the outgoing queue. From what I can see mail is received from a backup mail relay for a non existent user on this server. When we try to reject it back to sender, if the sender rejects with 550 we bin it.
    I guess the problem is what to do when the receiving mail server fails to respond? I think eventually it times out and we delete the message. Is that correct?
    Aug 18 15:27:00 server postfix/cleanup[20819]: 9F7AAE92EB: message-id=<000001c6c2d2$2aae8940$d73fa8c0@hpcsece>
    Aug 18 15:27:00 server postfix/qmgr[17315]: 9F7AAE92EB: from=<[email protected]>, size=3353, nrcpt=1 (queue active)
    Aug 18 15:27:00 server postfix/smtpd[20816]: disconnect from scanner.datacenta.net[217.33.105.206]
    Aug 18 15:27:16 server postfix/smtpd[20827]: connect from localhost[127.0.0.1]
    Aug 18 15:27:16 server postfix/smtpd[20827]: B7FA3E930E: client=localhost[127.0.0.1]
    Aug 18 15:27:16 server postfix/cleanup[20819]: B7FA3E930E: message-id=<000001c6c2d2$2aae8940$d73fa8c0@hpcsece>
    Aug 18 15:27:16 server postfix/qmgr[17315]: B7FA3E930E: from=<[email protected]>, size=3905, nrcpt=1 (queue active)
    Aug 18 15:27:16 server postfix/smtpd[20827]: disconnect from localhost[127.0.0.1]
    Aug 18 15:27:17 server postfix/smtp[20820]: 9F7AAE92EB: to=<[email protected]>, relay=127.0.0.1[127.0.0.1], delay=18, status=sent (250 2.6.0 Ok, id=20277-06, from MTA: 250 Ok: queued as B7FA3E930E)
    Aug 18 15:27:17 server postfix/qmgr[17315]: 9F7AAE92EB: removed
    Aug 18 15:27:17 server postfix/lmtp[20828]: B7FA3E930E: to=<[email protected]>, relay=/var/imap/socket/lmtp[/var/imap/socket/lmtp], delay=1, status=bounced (host /var/imap/socket/lmtp[/var/imap/socket/lmtp] said: 550-Mailbox unknown. Either there is no mailbox associated with this 550-name or you do not have authorization to see it. 550 5.1.1 User unknown (in reply to RCPT TO command))
    Aug 18 15:27:17 server postfix/cleanup[20819]: 38178E9310: message-id=<[email protected]>
    Aug 18 15:27:17 server postfix/qmgr[17315]: 38178E9310: from=, size=6025, nrcpt=1 (queue active)
    Aug 18 15:27:17 server postfix/qmgr[17315]: B7FA3E930E: removed
    Aug 18 15:27:19 server postfix/smtp[20831]: 38178E9310: to=<[email protected]>, relay=bx1.techsolsc.com[65.5.144.18], delay=2, status=bounced (host bx1.techsolsc.com[65.5.144.18] said: 550 <[email protected]>: Recipient address rejected: Unknown user (in reply to RCPT TO command))
    Aug 18 15:27:19 server postfix/qmgr[17315]: 38178E9310: removed

  • Why do I get these mail queue messages in daily.out log?

    I did a dumb thing. I wanted to see if the PHP "mail" command would work from my local machine. I wrote a tiny script to send a test message (I use MAMP). The script ran but no mail was ever received. I tried it 4 times and gave up.
    I look in my daily.out logs for the past few days and I find that something is trying to send the mail each day. It looks like these 4 mails are sitting in some queue to be sent (probably by sendmail or postfix?)
    Does anyone have any idea how to get rid of the 4 items? Where would they be? How can I purge them. I Googled but didn't find anything that looked relevant.
    Thanks,
    Al
    (note: I changed some of the content for security)
    mail:
    postqueue: warning: Mail system is down -- accessing queue directly
    -Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient-------
    087BA72FD11 346 Sun Feb 1 01:20:31 [email protected]
    (connect to xxxx.yyyy.com[111.22.333.444]: Operation timed out)
    [email protected]
    313EE72FCDF 346 Sun Feb 1 01:16:55 [email protected]
    (connect to xxxx.yyyy.com[111.22.333.444]: Operation timed out)
    [email protected]
    C441C72FD0D 346 Sun Feb 1 01:19:48 [email protected]
    (connect to xxx.ttt.com[111.22.333.444]: Operation timed out)
    [email protected]
    D76DB72FDBE 370 Sun Feb 1 01:41:08 [email protected]
    (connect to xxxx.tttt.com[111.22.333.444]: Operation timed out)
    [email protected]

    Thanks. Someone wrote me and said to try "postsuper" as shown at:
    http://blog.gtuhl.com/2008/08/14/basic-postfix-queue-management/
    Have you ever used it? I don't want to hose my computer and I get cold feet messing with Apple's internals.
    Al

  • Server mail does not delete mail queue

    mail server does not delete mail queue.

    Apparently, Mail sometimes fails to remove messages from the server when Remove copy from server is set to Right away -- don’t know why.
    I can only guess Mail sometimes has problems communicating with the server, and precisely because the setting is Right away, never tries again. I’d try changing the setting to After one day or When moved from Inbox, and see whether that makes a difference.
    Also, 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.
    Have you checked whether Thunderbird does remove the messages from that server?
    BTW, woodie is wrong. It’s true that Gmail ignores any requests to delete messages from the server made by a POP client, but it doesn’t let the same messages to be downloaded more than once via POP either. Gmail just doesn’t work like a normal POP server would.

  • IIS 6.0 - so many mails stuck in mail queue

    Hi All,
    From past 2 days, so many mails are getting stuck in mail queue folder. Normally, when there are more than 20 mails in queue, we used to restart SMTP and the queue gets cleared immediately. But , now the situation has changed. When we restart SMTP to clear
    mails in queue, they keep on increasing, say from 20 to 100 and then after 1 hour or so, the number goes to 20-25 and again increasing. We have not changed anything, but dnt know why this is happening suddenly from past 2 days. Users also are complaining that
    they are getting notification mails very late. The mails are not getting send and just staying in queue for a long time. I checked in SMTP log and found " OutboundConnectionResponse SMTPSVC1 E-SALES - 25 - - 421-4.7.0+[203.170.190.51++++++15]+Our+system+has+detected"+an+unusual+rate+of
    0 0 77 0 17891 SMTP - - - -" 
    Kindly help and Please let me know if you need more information.
    Thank you,
    Phani.

    Hi Darin,
    Thank you for your reply. We dont have Azure.
    Actually, we have an e-payment website and when users made transactions, the notification mails go to users. We are using IIS web server v6.0 for this whole set up and SMTP is also configured in this. Basically, I am programmer and this is not my work domain.
    I am taking care of this server for time being and don't have much information/idea. Today, I observed the mails in queue are processing normally, but we did not change anything. What could be the reason for long mail queue for previous 2 days? can you throw
    some light on this? :)
    Thank you.
    hi,
    It seems like this issue may be not related to azure . I suggest you could post this issue into IIS forum or Window server General forum
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winservergen for more helps.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Mail stuck in the Mail Queue

    For reasons I have not yet understood, my 10.5.2 mailserver stopped delivering mail. After a few restarts it is now running again but;
    All the mail that arrived while it was stopped is now stuck in the Mail Queue. How can I get it to deliver thisstuck mail?

    pterobyte wrote:
    If they can't get to the content filter on the first try, maybe it's overloaded? How busy is your machine?
    It's a new installation of Leopard Server on an internal drive, the CPU navigate from 0 to 20% so it's not here. I used spamtrainer to import the database from the old drive (Tiger Server) and the mail store is on a RAID disk so I just had to change the default mail location in the right pane. I just restarted the server on the Tiger Server disk and everything is fine there.
    Requeuing does not start the content filter, so if it were off, it'd still be off. So since it is running, it look like it can't keep up.
    Sorry, I do my best to be understandable :->
    I just made tries to see if mails would be delivered once the spam and virus filter is off and saw that mails were not delivered at all.
    Is this the normal behavior ?
    This problem of the content filter is probably linked to what I said in another thread.
    I cannot uncheck "Attach subject tag" in Server Admin. If I uncheck the spam filter and virus filter then mails are not delivered too.
    I doubt it is linked (unless you "play" with Server Admin while troubleshooting the queue). As I mentioned above, amavisd, doesn't run just "a bit".
    You can always change the amavisd and postfix settings yourself.
    If I knew what to change and where I probably would do it :->
    I'm just scared about how many things don't work as expected once Leopard Server is installed.
    Lot of problems with SMB too and as we have only one machine here I must reboot the server on Tiger if I don't want everybody here to kill me :->>
    Maybe some files cannot be read/write...
    If it was a permission issue, requeued mail would still hit the same issues.
    Yes... I thought about that.
    Do you think that it could help to download the 10.5.2 combo update and to reinstall it ?
    Doubt it, but it probably won't hurt.
    Will try it as soon as I can reboot the server on Leopard. I seems that someone will not leave the office like others will do today
    Thanks for your help.

  • "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    lots of people seem to be havgin a problem sending email from iCloud webmail.
    does your email address have uppercase characters in it?
    if so, try creating an alias in lowercase (go to preferences in iCloud webmail and select 'accounts') and see if email sends okay from that

  • HT4864 When trying to update my Mail Account Mailbox Behaviours settings, when I try to close the settings pane the following messages occur: Invalid Incoming Mail Server The "Incoming Mail Server" field cannot be empty. The incoming mail server box has p

    When trying to update my Mail Account Mailbox Behaviours settings, after making the changes when I try to close the settings pane the following messages occur: Invalid Incoming Mail Server The “Incoming Mail Server” field cannot be empty. The incoming mail server box has in light grey colour: p02-imap.mail.me.com in it and I cannot edit its content. Any ideas what is going on and how to fix it?

    Hi all,
    Mattreichenbach is probably on the right track here with a reset of settings.  I think I've determined the issue has to do with cached account information and inconsistencies for the account name.  This seems to crop up when I've changed my password and it hasn't propagated fully to all the servers, devices, certificates, etc.
    Hopefully many here are on their way to restoration of service by now but it's clear that a lot of people are having the same issues.  Very frustrating and definitely something Apple needs to resolve:  incoming mail server field grayed out, incorrect autopopulation of different fields, other unanticipated behaviors.  If you're still having issues, though, here's what worked for me...
    First, head to the iCloud preferences pane in System Configuration and choose "Sign Out".  When I did this it prompted me with a number of "are you sure" type questions about retaining information on my local machine.  I chose to delete/remove the info each time simply because it should all be restored by the cloud and I didn't want to risk a massive duplication of my data... I will say, I'm back up and running with no issues so I suspect you can make the same delete/remove choices...  But use your own judgment.  I don't want you to lose any data (ie.. please use care as you do this because I cannot bear the thought of causing anyone to experience the pain of data loss).
    Once you've signed out of iCloud, restart your system.  When you get back in, head to the Mail, Contacts and Calendars section of your System Preferences and add your account back by choosing the brushed aluminum "iCloud" button.  When it asks for your account name, use your @iCloud.com email address.  I am all but certain my issue had started because one of my devices (iPhone or whatever) had been set up with an email alias specified instead of my @iCloud.com address.
    Apple, if you're reading through any of these issues (there are TONS of users having this same problem).  Take note, that your icloud service somewhat frequently is not responding and yet tells the user that the password is wrong and this prompts people to be changing their passwords unnecessarily.  This has happened to me on numerous occasions.  Also, I noticed that last week's outage corresponded to a VERY similar outage exactly one year ago to the day.  Sounds like planned maintenance to me and I think you could do a better job notifying folks so we're not wasting HUGE amounts of time troubleshooting a problem that we have no hope of fixing.
    Hope that helps some of you!
    Terry Mullane
    Washington, DC

Maybe you are looking for

  • Colours are not changing when a certain value is used

    Hi all. This might look strange. But anywayz... I am developing a game related to controlling trains and preventing them from clashing into one another. Naturally, my game allows the user to control the colour of the signals present at each station.

  • Magic Mouse Click Pressure

    I Just recently bought a Magic Mouse and noticed, I was clicking too hard on the LEFT side of the mouse, So, now I see a little more space on the RIGHT SIDE you know what I mean?, this action could be Broke or damage my Magic Mouse through the years?

  • Could anybody explain this warning message regarding Posix Performance Pack

    Hi, I am getting following message on my console : <Sep 10, 2002 7:12:38 PM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception for fd: '123' with no corresponding table entry> <Sep 11, 2002 12:40:48 AM GMT+08:00> <Warning> <Posix Performanc

  • Selection view in MM02 BDC program

    Hi Experts, I am doing BDC Session method for Tcode MM02.There i am getting selection View screen for different material.But if i select a material in Sales view i need to select Sales :Sales org dAta. It's coming third position. But for some materia

  • Can't get Illustrator to reinstall on my computer

    I have Adobe Illustrator CS2 on my computer - computer locked up - I tried to reinstall but Illustrator just says "The application Illustrator has unexpectedly quit." Never had a problem in the past reinstalled any software. Do think its a virus? Mes