Mail sending 2 messages for every 1 sent ("sending 2 of 2 messages")

hi... did a search, but it was a tough one to search for.
an odd problem: mail says it's sending 2 messages for each message i send. for instance, i type a note to my mom (because i'm a good son) and hit send on the one email... the status bar at the bottom left of the panel says: "sending message: 2 of 2" or "outgoing messages: 2 of 2"...
however, in checking the sent folder, only 1 message sent.
it does not do this all of the time, but about 1 out of every 5 messages, it seems...
i'm worried about malware, spyware, etc... would there be such a thing? why is mail acting weird?

There are no viruses for Mac OS X, and no malware can be installed without you providing your Admin password, so you don't have that, either.
This is normal behavior, because you have an IMAP email account. In order for everything to be in sync, the mail server and your Mac must communicate very frequently, and that includes whenever you send or receive email. The message may say one thing, but unless you see multiple, identical messages being sent or received, it's not happening. There's no such thing as invisible email.
Mulder

Similar Messages

  • HT5312 I cant remember the answer to some questions and they blocked my account. I've been sending requests for them to send it to my mail like 20 times and nothing. What can I do?

    I cant remember the answer to some questions and they blocked my account. I've been sending requests for them to send it to my mail like 20 times and nothing. What can I do?

    Click here, phone Apple, and ask for the Account Security team.
    (87657)

  • Is there any mechanism for broadcast messages for every client?

    Hi, all
    I just wanna to develop such a kind of chatting program. So I just build the communication structure for that. I want to use UDP protocol to send and recieve messages. As we know about that protocol, it does not need connection between server and client, so some packages will be lost. I just used only one DatagramSocket to recieve and send any messages back and forth. And I implemented the client using multithread technique. The problem is that when multiple client sent messages to server, how could server broadcast the specific message to all clients. I am very headache about that. I just used Vector to store diffrent address and port. And when a meesage arrived, I will firstly make ajustment about whether the address and port had been stored, if not, I will add, otherwise I will ignore it. So I think it will be terrible that if thousands of clients connected to the server, how big Vector will be. So I want to know whether the Net package or DatagramSocket provided some kind of mechanism about broadcast messages for every interested client. Thanks. Here is my code below:
    ChattingServer.java
    * Created on 2005-4-16
    * TODO To change the template for this generated file go to
    * Window - Preferences - Java - Code Style - Code Templates
    // A server that echoes datagrams
    import java.net.*;
    import java.io.*;
    import java.util.*;
    * @author Kevin
    * TODO To change the template for this generated type comment go to
    * Window - Preferences - Java - Code Style - Code Templates
    public class ChattingServer {
         static final int INPUT = 1066;
         private byte[] buf = new byte[1000];
         private DatagramPacket dp = new DatagramPacket(buf, buf.length);
         private DatagramSocket socket;
         private Vector addrVector, portVector;
         public ChattingServer() {
              try {
                   System.out.println("Chatting Server Started......");
                   socket = new DatagramSocket(INPUT);
                   System.out.println("The status is: " + socket.getBroadcast());
                   addrVector = new Vector();
                   portVector = new Vector();
                   socket.receive(dp);
                   addrVector.addElement(dp.getAddress());
                   portVector.addElement(new Integer(dp.getPort()));
                   System.out.println("The original size of addrVector: " + addrVector.size());
                   System.out.println("The original size of portVector: " + portVector.size());
                   String first = Transfer.toString(dp);
                   System.out.println(first);
                   System.out.println("The info: " + dp.getAddress() + ": " + dp.getPort());
                   DatagramPacket echo = Transfer.toDatagram(first, dp.getAddress(), dp.getPort());
                   socket.send(echo);
                   while(true) {
                        socket.receive(dp);
                        System.out.println("A message recieved and prepare for broadcasting.....");
                        for(int i = 0; i < addrVector.size(); i++){
                             if(!((((InetAddress)(addrVector.elementAt(i))).toString() == (dp.getAddress()).toString()) && (((Integer)portVector.elementAt(i)).toString() == (new Integer(dp.getPort())).toString()))) {
                                  System.out.println("Before adding element");
                                  System.out.println("(InetAddress)(addrVector.elementAt(i)).toString(): " + ((InetAddress)(addrVector.elementAt(i))).toString() + ", dp.getAddress().toString(): " + (dp.getAddress()).toString());
                                  System.out.println("(Integer)portVector.elementAt(i).toString(): " + ((Integer)portVector.elementAt(i)).toString() + ", (new Integer(dp.getPort())).toString()" + (new Integer(dp.getPort())).toString());
                                  addrVector.addElement(dp.getAddress());
                                  portVector.addElement(new Integer(dp.getPort()));
                        String info = dp.getAddress() + ": " + dp.getPort();
                        String rcvd = info + ": " + Transfer.toString(dp);
                        System.out.println(rcvd);
                        System.out.println("The size of addrVector is: " + addrVector.size());
                        System.out.println("The size of portVector is: " + portVector.size());
                        String echoString = Transfer.toString(dp);
                        for(int i = 0; i < addrVector.size(); i++) {
                             InetAddress tempAddr = (InetAddress)addrVector.elementAt(i);
                             int tempPort = Integer.parseInt(portVector.elementAt(i).toString());
                             System.out.println("The port is: " + tempPort);
                             echo = Transfer.toDatagram(echoString, tempAddr, tempPort);
                             socket.send(echo);
              } catch(SocketException e) {
                   System.err.println("Can't open socket");
                   System.exit(1);
              } catch(IOException e) {
                   System.err.println("Communication error");
                   e.printStackTrace();
         public static void main(String[] args) {
              new ChattingServer();
    ChattingClient.java
    * Created on 2005-4-16
    * TODO To change the template for this generated file go to
    * Window - Preferences - Java - Code Style - Code Templates
    // Tests the ChattingServer by starting multiple clients, each of which sends datagrams.
    import java.lang.Thread;
    import java.net.*;
    import java.io.*;
    * @author Kevin
    * TODO To change the template for this generated type comment go to
    * Window - Preferences - Java - Code Style - Code Templates
    class Sender extends Thread {
         private DatagramSocket s;
         private InetAddress hostAddress;
         public Sender(DatagramSocket s) {
              this.s = s;
              try {
                   hostAddress = InetAddress.getByName(null);
              } catch(UnknownHostException e) {
                   System.err.println("Can not find host");
                   System.exit(1);
              System.out.println(" Welcome ChattingDemo..........");
              System.out.println("Please input your name&#65306; ");
         public void run() {
              try {
                   String strSent;
                   BufferedReader rd = new BufferedReader(new InputStreamReader(System.in));
                   String name = rd.readLine();
                   while(true) {
                        System.out.print(name + ": ");
                        strSent = rd.readLine();
                        if(strSent == "END") break;
                        s.send(Transfer.toDatagram(strSent, hostAddress, ChattingServer.INPUT));
                        sleep(100);
                   System.exit(1);
              } catch(IOException e) {
              } catch(InterruptedException e) {
    public class ChattingClient extends Thread {
         private static DatagramSocket s, srv;
         private byte[] buf = new byte[1000];
         private DatagramPacket dp = new DatagramPacket(buf, buf.length);
         public ChattingClient(DatagramSocket s) {
              this.s = s;
         public void run() {
              try {
                   while(true) {
                        s.receive(dp);
                        String rcvd = Transfer.toString(dp);
                        System.out.println(rcvd);
                        sleep(100);
              } catch(IOException e) {
                   e.printStackTrace();
                   System.exit(1);
              }catch(InterruptedException e) {
         public static void main(String[] args) {
              try {
                   srv = new DatagramSocket();
              } catch(SocketException e) {
                   System.err.println("Can not open socket");
                   e.printStackTrace();
                   System.exit(1);
              new ChattingClient(srv).start();
              new Sender(srv).start();
    }

    Hello Amir,
    ACS used to tie the license to the MAC address of the machine but I believe Cisco removed that in version 5.1 or 5.2 as users were facing with issues if the MAC changed on a virtual machine. 
    Other Cisco products, such as the ASA, Call Manger, and even ISE are a lot more restrictive when it comes to licensing. However, Cisco in general has many products that are licensed on the "honor system" where you are responsible for reporting and paying for everything that you are using. 
    Also, I suppose Cisco could audit any companies out there and figure out what the company is using vs what it actually paid for :)
    I hope this helps!
    Thank you for rating helpful posts!

  • XML Error Message for Every one hour in SXMB_MONI

    Hi All,
    I am getting XML error Message for every one hour in PI when I check in SXMB_MONI I can see this.
    Details Below
    Sender Componant : PI
    Sender Interface : SAPCCMS
    Reciever Interface/Reciever Componant : Both are empty.
    PI Version 7.1
    Can anybody help in this.
    Dayakar

    Hi!
    I was just searching this about this problem and found a post that might interest you.
    [urn:SAPCCMS;
    cheers

  • I am getting message for every app connect to iTunes to push notification

    I am getting message for every app connect to iTunes to push notification

    I had the same problem too!
    But after i changer the usb cable , everything went back to normal
    hope it help!

  • Getting mail authentication errors for outlook user sending mail

    When Outlook 2010 user attempts to use port 587 to send mail (to himself at this point), we see the following in the server logs:
    (User in question can attach to file shares on the same server just fine from his Windows laptop)
    Outlook config for outbound server is "port: 587, encryption TLS"
    When we connect, we get "connection interrupted by server"
    Tried other encryption methods - outlook 2010 states that server does not support the other methods (None, SSL)
    SMTPD Logs
    Jul 29 22:22:58 <servername>.l-n-l.com postfix/smtpd[2306]: connect from <Outlook Client Name>[<Outlook ClientAddr>]
    Jul 29 22:22:58 <servername>.l-n-l.com postfix/smtpd[2306]: error: validate response: error: Authentication server failed to complete the requested operation.
    Jul 29 22:22:58 <servername>.l-n-l.com postfix/smtpd[2306]: error: validate response: authentication failed for user=colin (method=DIGEST-MD5)
    Jul 29 22:22:58 <servername>.l-n-l.com postfix/master[1407]: warning: process /usr/libexec/postfix/smtpd pid 2306 killed by signal 6
    Jul 29 22:22:58 <servername>.l-n-l.com postfix/master[1407]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jul 29 22:24:12 <servername>.l-n-l.com postfix/smtpd[2270]: timeout after END-OF-MESSAGE from localhost[127.0.0.1]
    Jul 29 22:24:12 <servername>.l-n-l.com postfix/smtpd[2270]: disconnect from localhost[127.0.0.1]
    Meanwhile: Mac clients are able to connect to smptd submission port to send mail with no problems. Based on what the logs say, it appears that the Mac mail is using a different authentication mechanism.
    Client config for outbound server is "use custom port: 587, Use SSL:Checked, Authentication: MD5 Challenge-Response"
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/smtpd[2261]: connect from <Mac Client Name>[<MacClientAddr>]
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/smtpd[2261]: 721FCEC991: client=<Mac Client Name>[<MacClientAddr>], sasl_method=CRAM-MD5, sasl_username=<username>@l-n-l.com
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/cleanup[2267]: 721FCEC991: message-id=<[email protected]>
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/qmgr[1800]: 721FCEC991: from=<[email protected]>, size=573, nrcpt=1 (queue active)
    Jul 29 22:19:12 <servername>.l-n-l.compostfix/smtpd[2270]: connect from localhost[127.0.0.1]
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/smtpd[2270]: E722AEC9A0: client=localhost[127.0.0.1]
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/cleanup[2267]: E722AEC9A0: message-id=<[email protected]>
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/qmgr[1800]: E722AEC9A0: from=<[email protected]>, size=994, nrcpt=1 (queue active)
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/smtp[2268]: 721FCEC991: to=<[email protected]>, relay=127.0.0.1[127.0.0.1]:10024, delay=0.55, delays=0.06/0.01/0.01/0.48, dsn=2.0.0, status=sent (250 2.0.0 from MTA(smtp:[127.0.0.1]:10025): 250 2.0.0 Ok: queued as E722AEC9A0)
    Jul 29 22:19:12 <servername>.l-n-l.com postfix/qmgr[1800]: 721FCEC991: removed
    Jul 29 22:19:13 <servername>.l-n-l.com postfix/pipe[2273]: E722AEC9A0: to=<[email protected]>, relay=dovecot, delay=0.13, delays=0/0.01/0/0.12, dsn=2.0.0, status=sent (delivered via dovecot service)
    Jul 29 22:19:13 <servername>.l-n-l.com postfix/qmgr[1800]: E722AEC9A0: removed
    Jul 29 22:20:12 <servername>.l-n-l.com postfix/smtpd[2261]: disconnect from <Mac Client Name>[<MacClientAddr>]
    Running OS X 10.8.4 with Server 2.2.1.
    Any thoughts on what I need to do to make OSX Server mail play nice with Outlook over the submission port?
    Thanks in advance!!

    Ok - so I think I have it almost all sussed. So for all 3 of you who might be reading this, here is what is going on.
    1) As I expected, this has nothing to do with the FQDN/Outlook problem. I actually rejoiced when I finally got far enough to have that problem with my Outlook 2007 and 2010 clients. And I don't like the recommended fix for that either. There is another way - more on that in a minute.
    2) This problem was all about authentication methods. At present, I have OS X Mail Server set for plain text and APOP only. I will be working to fix this soon - but at present I am unable to find any other combination that permits both Mac Mail and Outlook clients to authenticate properly. Mac Mail wants to use CRAM-MD5 by default. Outlook is so incompatible with CRAM-MD5 that even when there are other authentication methods available on the mail server, if CRAM-MD5 is selected on the Server then Outlook fails miserably no matter how you configure the Outlook client. Caveat: this is my own observation and I still have some experimenting to do. If you know otherwise (or can confirm more definitively), then please speak up!
    So here is the working configuration at present:
       A) Mail Server authentication set to Custom with PlainText and APOP selected, all others blank.
       B) Firewall permits inbound from ports 25 (for mail from "outside"), 587 (submission for authenticated users, TLS) 993 (SSL IMAP), and 995 (SSL POP).
       C) Mac POP Clients:
          i) For retrieval (POP) In advanced settings, use Port 995, Check "Use SSL", Select APOP for authentication.
          ii) For submission (SMTP) : Set port 587 (only), Set Authentication to "Password"
        D) Outlook 2007,2010,2013 clients
           i) For retrieval (POP), Set "Require secure logon using SPA"
          ii) In "More Settings/Outgoing Server" set it to require authentication with same credentials as inbound
         iii) In "More Settings/Advanced"
             a) Turn on Encryption for the POP3, this should change the port to 995 automatically. If it does not, fix that too.
             b) Set outgoing server to 587
             c) Set TLS for the encryption type (nothing else will work here)
    Once you do 2.A, 2.B, 2.D, you will THEN, finally encounter the FQDN problem.
    3) So Apple and a lot of folks here in the forums resolve the FQDN problem by removing one of the restrictions:
        Remove "reject_non_fqdn_helo_hostname" from "smtpd_helo_restrictions" in your postfix main.cf file.
    I have at least 2 problems with this:
       A) It removes yet another little bit of security from the setup
       B) It involves non-GUI changes to the config...which is dangerous if you use the GUI, as changes within the GUI will often result in overwrites to your changes outside the GUI. So you can easily lose this fix without being aware of it until one of your Outlook users starts screaming.
    The problem is really with Outlook and Windows not sending the FQDN in the first place. So how about we force them to do that instead? It turns out not to be too hard. I found a thread somewhere that goes into this and it works. Further, the solution remains on through reboots AND also can be made part of an automated deployment of a standard config. The only gotcha is you have to edit the registry...so you have to be careful. You only need to do this ONCE though, and the two entries are easy to find.
      C) Under HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/services/Tcpip/Parameters
           i) Set Hostname to the FQDN of your host (replace HOST with HOST.domain.com - or .net, or whatever)
          ii) Set NV Hostname to the FQDN of your host
          iii) Close Regedit and Reboot to have the changes take effect
    Once you do this, the FQDN problem for Outlook users goes away.
    So I am looking for suggestions to make the SMTP submission more secure. Aside from that, things are working - and I have had to make ZERO changes to config files outside of the Server GUI - a plus as far as I am concerned.

  • Error message for email sent

    Hi,
    I got an error message for an email sent to external user from workflow as "Message cannot currently be transferred to node SMTP due to connection Error" How to resolve it? i think i have done enough in tcode scot for email send please help me out .
    Thanks
    Parag

    do like this
    1. Execute SCOT Txn.
    2. Double click on the SMTP, an new subscreen will be displayed.
    3. Check whether the checkbox Internet is enabled or not, if it is enabled then click on the button SET beside to the internet check box.
    4. One more new subscreen will be displyed under the Address Area mention  the email id . and click OK
    and try to send the mail
    Note: befre doing all the above make sure you have done all the required settings to send  a mail

  • IPhone 5 - "Not Delivered" Message for Pictures Sent via iMessage

    I have received the "not delivered" message when trying to send a picture message via iMessage. The pictures actually are received by the other parties, yet I still get the error message, as do other parties when trying to send photos to me. If the picture is sent via text they send without the error message. Does anyone have any information that could help me with this problem?
    I have the 32GB iPhone 5 on iOS 7.1.1.

    Any errors when attempting to view pics?
    Have you tried Settings > General > Reset > Reset Network Settings?

  • Getting message for every record while pressing down arrow key:apps form

    Hi,
    when i query the form and when I am going through the records by pressing the down arrow of the keyboard I am getting the message 'Do you want to Save the records' for every record even though i did not update any record
    How to avoid the message?
    I developed the form in oracle applications and it is a master detail form which have a header block and lines block.
    thanks & regards
    Deekshit

    Hello,
    You can review the following;
    https://metalink.oracle.com/metalink/plsql/f?p=200:27:627127677634310554::::p27_id,p27_show_header,p27_show_help:173383.995,1,1
    Hope it helps.
    Adith

  • Getting message for every  record while pressing the down arrow

    Hi,
    when i query the form and when I am going through the records by pressing the down arrow of the keyboard I am getting the message 'Do you want to Save the records' for every record.
    How to avoid the message?
    I developed the form in oracle applications and it is a master detail form which have a header block and lines block.

    You are probably changing a value in POST-QUERY trigger, check your trigger and make sure you're not updating any values.
    For Oracle Apps specific questions, I suggest you post in the E Business Suite section of the Forums.
    Tony

  • Mail Delivery Failure for every incoming email

    Hey,
    I have been receiving mail delivery emails with every incoming email.  Is this a server side issue or is my email hacked?
    Thanks,
    Grant

    I'm getting this too...... I was going to change my password ....So this is for sure a server problem.... So apple is looking into this?

  • ICloud sends messages for every change in someone else's calendar

    I am trying to use iCloud calendar services for collaboration with my wife, and my secretary (I actually even bought a mac for my wife so that we could do this).
    However every time either of them change anything in their respective calendars I get an e-mail from iCloud saying an event has been created. This only started about a week ago.
    I have checked to see if some of my settings in iCloud have changed, and they haven't (the box in iCloud that says: "E-mail me when this calendar changes" is not ticked).
    I am now totally confused about why I am suddenly getting all these e-mails which are quite irritating.

    This seems to be a known problem with no solution at present, I'd be inclined just to wait for a fix to be released.

  • EDI output message for Outbound Deliv send with application own transaction

    Dear All,
    I encountering a problem with the output message "WSOR" via EDI.
    What i want:
           I would to configure this message output without the Dispatch time " 3: Send with application own transaction".
    What is encountering now:
          I have done the setting in "VV22" or VV21, with the conbination of Delivery type and Shipping point. and the setting is EDI with dispatch time 3: Send with application own transaction.
    But When i use ME2O to create the outbound delivery for subcontractor, the message output "WSOR" process automatically and the dispatch time is 4: Send immediately (When application save).
    Can anyone please advice me what are the setting or area that i need to check!!
    Thank you very much,
    Regards,
    Chee Wee

    Hi
    Try here...
    Logistics Execution -> Shipping -> Basic Shipping Functions -> Output Control -> Output Determination -> Maintain Output Determination for Outbound Deliveries
    Regards
    Eduardo

  • How can I receive a "send receipt" for email I send?

    How can I receive a "send receipt" when I send email?

    You'll essentially get a "Send Receipt" immediately after sending as the message will appear in your Sent mailbox.
    If you are looking for a "read reciept," It is pretty much not supported by Mail. You can set up a header for all outgoing email which will attempt to intrude on your recipients' privacy, but it will be for all emails.
    Also, many email clients will not respond to a read receipt, including Mail. Even if they will respond to a read receipt, the default setting is uaually to ask the user prior to sending. So, there is no guarantee you will ever get a read receipt.
    I have no idea if this still works: http://email.about.com/od/macosxmailtips/qt/et_request_recp.htm
    If it is really that important to you, add a sentence to your signature explaining the great necessity that you need to invade your recipient's privacy and that they need to respond immediately to let you know they've read your email.

  • As of today I get "This connection is untrusted" message for EVERY website, including all the ones that I've bookmarked and been using for years.

    It's not an exception problem, as I get it on all the websites I try to visit and all of these have worked for years.

    Who is the issuer of the certificate?
    You can retrieve the certificate and check details like who issued certificates and expiration dates of certificates.
    *Click the link at the bottom of the error page: "I Understand the Risks"
    Let Firefox retrieve the certificate: "Add Exception" -> "Get Certificate".
    *Click the "View..." button and inspect the certificate and check who is the issuer of the certificate.
    You can see more Details like intermediate certificates that are used in the Details pane.
    If <b>"I Understand the Risks"</b> is missing then this page may be opened in an (i)frame and in that case try the right-click context menu and use "This Frame: Open Frame in New Tab".
    *Note that some firewalls monitor (secure) connections and that programs like Sendori or FiddlerRoot can intercept connections and send their own certificate instead of the website's certificate.
    *Note that it is not recommended to add a permanent exception in cases like this, so only use it to inspect the certificate.

Maybe you are looking for

  • Trying to understand the default TEXT boxes in the templates?

    Sometimes the default text boxes in a template cannot be deleted. It's as if they act as spacers ... for example a 'title' text box that if dragged down makes the page longer. A 'normal' text box doesn't do this, and it can be deleted. I'm customizin

  • Problem with text-overflow:ellipsis

    I have a panel on my page that I am trying to stop from becoming too deep, so I have set a max-height and am expecting the text to present me with '...' when the box is no longer large enough. Trouble is, it's not working. The only time I can get CSS

  • Completed form appears blank

    I've received an interactive form (created in Acrobat 9 Pro) back completed, but all the fields appear blank until I click on one & then if I clck on another the previous one appears blank again i.e. only one at a time can be seen Has anyone come acr

  • When writing

    When writing and the word is displayed how do I capture it without losing my place in the sentence

  • LabVIEW 7 USB Camera

    Has anyone tried to use the new USB functions in LabVIEW 7 to capture an image from a USB camera?