Mail with display problems???

I have a problem displaying the header information i a correct way. There are line breaks between "from" and "subject", normaly there shouldn't be not one line break.
Does someone know how to solve this problem.
You can have a look at http://www.kraftwerk-sg.ch/mail_displayproblem.jpg
PowerBook 1GHz   Mac OS X (10.4.4)  

J. C.,
My suggestions were only applicable to to Rafael, and not you. You problem is likely that the Helvetica.dfont is missing, or turned off -- it is required for the Red Dot, and many other things in Mail, Safari and iChat. You were correct that it has to do with the system fonts. See:
http://discussions.apple.com/thread.jspa?threadID=122011
All the best.

Similar Messages

  • Using Mac Mail with Exchange problem - Please HELP

    When using mac mail with exchange server 2000 when i delete an email from mac mail it doesnt delete it from exchange i know this because when i login to my email from microsoft outlook the mail that i deleted is still there.
    i have tried changing the mailbox behaviours in mail preferences to not store deleted messages on the server but this didnt do anything do i need to setup directory access in utilities to get an exchange account to work properly any help would be appreciated as we dont want to have to use microsoft products
    many thanks

    Are you set up for POP or IMAP? For POP, that's the normal behavior. For IMAP, try making sure you have the synchronize mail folders option selected. The is under Mail->Preferences->Accounts->Advanced.

  • Receive mail with outlook problems

    goodmorning from greece
    i hava a problem with outllook 2007. Finaly i manage to connect outlook with exchange server 2013. When i try to send a mail to me (for test - inside the organization not over internet) from outlook it seems that the email was send because it moves at SEND.
    But then i cannot receive the email.
    I configure the account as exchange not as POP3 or IMAP.
    Any one can help?

    Hi KostasVit,
    Is there the same issue when you send a mail via OWA?
    If you can receive test mail via OWA, it may be a client issue, I recommend you try to change another PC and check again.
    If you cannot receive test mail yet, I recommend you use message tracking log to analyze if there is any mail flow issue. 
    More details about message tracking for your reference:
    http://technet.microsoft.com/en-us/library/bb124375(v=exchg.150).aspx
    In Microsoft Exchange Server 2013, the message tracking log is a detailed record of all message activity as messages are transferred to and from the Transport service on Mailbox servers, mailboxes on Mailbox servers, and Edge Transport servers. You can use
    message tracking logs for message forensics, mail flow analysis, reporting, and troubleshooting
    Best regards.
    Niko Cheng
    TechNet Community Support

  • UTL_SMTP mail with attachment( Problem in adding multiple recipient)

    Hi All,
    I am using the below code for sending the attachment.
    When i try to add the mail group name in my recipient details i am getting the following error
    ORA-29279: SMTP permanent error: 501 Syntax error, parameters in command "RCPT TO:Application Support - IT" unrecognized or missingHow to add the group in the recipient or cc ????
    My mail code is:
    create or replace PROCEDURE "SSSL_SEND_MAIL" ( p_sender varchar2,
          p_recipient varchar2,
          p_cc varchar2,
          p_subject varchar2,
          p_filename varchar2,
          text varchar2) is 
        /*LOB operation related varriables */
       v_src_loc  BFILE;
       l_buffer   RAW(54);
       l_amount   BINARY_INTEGER := 54;
       l_pos      INTEGER := 1;
       l_blob     BLOB := EMPTY_BLOB;
       l_blob_len INTEGER;
       v_amount   INTEGER;
        /*UTL_SMTP related varriavles. */
        v_connection_handle  UTL_SMTP.CONNECTION;
        v_from_email_address VARCHAR2(200);
        v_to_email_address   VARCHAR2(200) ;
        v_cc                 VARCHAR2(200);
        v_smtp_host          VARCHAR2(10) ;
        v_subject            VARCHAR2(500) ;
        l_message            VARCHAR2(3000);
        l_filename           VARCHAR2(4000);
        /* This send_header procedure is written in the documentation */
        PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
        BEGIN
        --dbms_output.put_line('entering into procedure');
        --dbms_output.put_line(pi_name || ': ' || pi_header);
          UTL_SMTP.WRITE_DATA(v_connection_handle,
                              pi_name || ': ' || pi_header || UTL_TCP.CRLF);
        END;
      BEGIN
       v_src_loc             := BFILENAME('BROKERREPORTS',p_filename);
       v_from_email_address  := p_sender;
       v_to_email_address    := p_recipient;
       v_cc                  := p_cc;
       v_smtp_host           := 'xxxxxx'; --My mail server, replace it with yours.
       v_subject             := p_subject;
       l_message      := 'tets';
        /*Preparing the LOB from file for attachment. */
        DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
        DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
        v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
        DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
        l_blob_len := DBMS_LOB.getlength(l_blob);
        l_filename:=p_filename;
        IF l_blob_len > 7000000 THEN
        BEGIN
        SSSL_FILE_ZIP.COMPRESSFILE(
        P_IN_FILE => '/mfundb/prdapex/BROKER-REPORTS/'||p_filename,
        P_OUT_FILE => '/mfundb/prdapex/BROKER-REPORTS/'||REPLACE(UPPER(p_filename),'XLS','ZIP')
      l_filename:=NULL;
      l_filename:= REPLACE(UPPER(p_filename),'XLS','ZIP');
      v_src_loc := BFILENAME('BROKERREPORTS',l_filename);
      DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
      DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
      v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
      DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
      l_blob_len := DBMS_LOB.getlength(l_blob);
    EXCEPTION WHEN OTHERS THEN
    sssl_internal_error_track(sqlcode,sqlerrm,'SSSL_FILE_ZIP',l_filename||'-'||p_recipient);
    END;
    END IF;
    /*UTL_SMTP related coding. */
        v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host);
        UTL_SMTP.HELO(v_connection_handle, v_smtp_host);
        UTL_SMTP.MAIL(v_connection_handle, v_from_email_address);
        UTL_SMTP.RCPT(v_connection_handle, v_to_email_address);
        UTL_SMTP.RCPT(v_connection_handle, v_cc);
        UTL_SMTP.OPEN_DATA(v_connection_handle);
        send_header('From', v_from_email_address);-- || '<'||'>');
        send_header('TO', v_to_email_address);--|| '<'||'>');
        send_header('CC', v_cc );   
        send_header('Subject', v_subject);
        --MIME header.
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'MIME-Version: 1.0' || UTL_TCP.CRLF);
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            ' boundary= "' || 'SAUBHIK.SECBOUND' || '"' ||
                            UTL_TCP.CRLF);
       UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        -- Mail Body
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Type: text/plain;' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            ' charset=US-ASCII' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, l_message || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        -- Mail Attachment
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                           'Content-Type: application/octet-stream' ||
                            UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            ' filename="' || l_filename || '"' || --My filename
                            UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      /* Writing the BLOL in chunks */
        WHILE l_pos < l_blob_len LOOP
          DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
          UTL_SMTP.write_raw_data(v_connection_handle,
                                  UTL_ENCODE.BASE64_ENCODE(l_buffer));
          UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
          l_buffer := NULL;
          l_pos    := l_pos + l_amount;
        END LOOP;
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        -- Close Email
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            '--' || 'SAUBHIK.SECBOUND' || '--' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
        UTL_SMTP.CLOSE_DATA(v_connection_handle);
        UTL_SMTP.QUIT(v_connection_handle);
        DBMS_LOB.FREETEMPORARY(l_blob);
        DBMS_LOB.FILECLOSE(v_src_loc);
      EXCEPTION
        WHEN OTHERS THEN
          UTL_SMTP.QUIT(v_connection_handle);
          DBMS_LOB.FREETEMPORARY(l_blob);
          DBMS_LOB.FILECLOSE(V_SRC_LOC);
         sssl_internal_error_track(sqlcode,sqlerrm,'SSSL_SEND_MAIL',l_filename||'-'||p_recipient);
      END;Kindly help me out to add the group or one or more mail id's
    Thanks in Advance
    Cheers,
    Shan.

    As, I said earlier (in some of your posts), you have to add UTL_RCPT for each recepient. For example, if you have CC list into some variable p_cc as comma separated list, then you can do something like this:
    ll_cc := '[email protected],[email protected],[email protected]';
       loop
           exit when l_to is null;
           n := instr( l_cc, ',' );
           IF n =0 THEN exit; end if;
           l_tmp := substr( l_cc, 1, n-1 );
           l_cc := substr( l_cc, n+1 );
           utl_smtp.rcpt( l_tmp );
       end loop;PS.: Not tested.
    Read this excellent explanation from Billy Verreynne
    To expand on what was said - the SMTP server does not parse the mail data you give it. It does not look at that to see the recipients, CC and BC list. The mail data is just that - raw data. This is the payload that the SMTP server will deliver.Where will it deliver it to? That you need to explicitly tell it via the RCPT TO SMTP command. So you need to build a complete list of names that includes all recipients, including CC and BC.
    And then use this list of names to instruct the SMTP SERVER, via the RCPT TO command, who must receive the message payload.>
    Re: Problem in sending email from oracle

  • UTL_SMTP mail with attachment( Problem in attaching zip file)

    Hi All,
    I used the below code for sending email with attachment. but when i try to add the message body its not working in the sense its not attaching my file. when i commented that line its attaching the file.
    commented lines:
    -- utl_smtp.write_data(mail_conn,UTL_TCP.CRLF ||'Body' ||':'|| text || UTL_TCP.CRLF);
      --utl_smtp.write_data(mail_conn,UTL_TCP.CRLF||text || UTL_TCP.CRLF );How to resolve this issue???
    Complete procedure.
    create or replace
    procedure sssl_send_mail (
          p_sender varchar2,
          p_recipient varchar2,
          p_cc varchar2,
          p_subject varchar2,
          p_filename varchar2,
          text varchar2) is    
        --c utl_smtp.connection;
        v_raw raw(57);
        v_length integer := 0;
        v_buffer_size integer := 57;
        v_offset integer := 1;
        mailhost    VARCHAR2(64) := 'xxxxxxxxxx';
        port constant number(2):=25;
        timeout number :=180;
        mail_conn  utl_smtp.connection;  
    p_blob Blob;
    temp_os_file bfile;
    ex number; 
    begin 
       DBMS_LOB.CREATETEMPORARY(p_blob,true);
       temp_os_file := BFILENAME ('xxxxxxxx',p_filename);
       ex := dbms_lob.fileexists(temp_os_file);
          if ex = 1 then
             dbms_lob.fileopen(temp_os_file, dbms_lob.file_readonly);
             dbms_lob.loadfromfile(p_blob,temp_os_file, dbms_lob.getlength(temp_os_file));
             dbms_lob.fileclose(temp_os_file);
           end if;
       mail_conn := utl_smtp.open_connection(mailhost, port,timeout);
       utl_smtp.helo(mail_conn, mailhost);
       utl_smtp.mail(mail_conn, p_sender);
       utl_smtp.rcpt(mail_conn, p_recipient);
       utl_smtp.rcpt(mail_conn, p_cc);
       utl_smtp.open_data(mail_conn);
      utl_smtp.write_data(mail_conn,'From'||':'|| p_sender || UTL_TCP.CRLF);
      utl_smtp.write_data(mail_conn,'To'||':'|| p_recipient || UTL_TCP.CRLF);
      utl_smtp.write_data(mail_conn,'CC'||':'|| p_cc || UTL_TCP.CRLF);
      utl_smtp.write_data(mail_conn,'Subject' ||':'|| p_subject || UTL_TCP.CRLF);
    -- utl_smtp.write_data(mail_conn,UTL_TCP.CRLF ||'Body' ||':'|| text || UTL_TCP.CRLF);
      --utl_smtp.write_data(mail_conn,UTL_TCP.CRLF||text || UTL_TCP.CRLF );
        utl_smtp.write_data( mail_conn, 'Content-Disposition: attachment; filename="' || p_filename || '"' || utl_tcp.crlf);
        utl_smtp.write_data( mail_conn, 'Content-Transfer-Encoding: base64' || utl_tcp.crlf );
        utl_smtp.write_data( mail_conn, utl_tcp.crlf );
        v_length := dbms_lob.getlength(p_blob);    
        <<while_loop>>
        while v_offset < v_length loop
          dbms_lob.read( p_blob, v_buffer_size, v_offset, v_raw );
          utl_smtp.write_raw_data( mail_conn, utl_encode.base64_encode(v_raw) );
          utl_smtp.write_data( mail_conn, utl_tcp.crlf );
          v_offset := v_offset + v_buffer_size;
        end loop while_loop;
        utl_smtp.write_data( mail_conn, utl_tcp.crlf );
        utl_smtp.close_data(mail_conn);
        utl_smtp.quit(mail_conn);
      exception
        when utl_smtp.transient_error or utl_smtp.permanent_error then
          utl_smtp.quit(mail_conn);
          raise;
        when others then
        raise;
      end;Please help me out to resolve this issue.
    Thanks in advance.
    Cheers ,
    Shan.
    Edited by: Shan on 13 Jan, 2011 1:08 PM
    Edited by: Shan on 14 Jan, 2011 3:22 PM

    Hi,
    Some Problems i am facing with this procedure. when i try to add CC in this procedure. Its sending the mail for recipent , But the CC person not getting the mail. How to resolve this??
    create or replace
    PROCEDURE sssl_send_mail( p_sender varchar2,
          p_recipient varchar2,
          p_cc varchar2,
          p_subject varchar2,
          p_filename varchar2,
          text varchar2) is 
        /*LOB operation related varriables */
       v_src_loc  BFILE;
       l_buffer   RAW(200);
       l_amount   BINARY_INTEGER := 200;
       l_pos      INTEGER := 1;
       l_blob     BLOB := EMPTY_BLOB;
       l_blob_len INTEGER;
       v_amount   INTEGER;
        /*UTL_SMTP related varriavles. */
        v_connection_handle  UTL_SMTP.CONNECTION;
        v_from_email_address VARCHAR2(200);
        v_to_email_address   VARCHAR2(200) ;
        v_smtp_host          VARCHAR2(10) ;
        v_subject            VARCHAR2(500) ;
        l_message            VARCHAR2(3000);
        /* This send_header procedure is written in the documentation */
        PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
        BEGIN
        --dbms_output.put_line('entering into procedure');
        --dbms_output.put_line(pi_name || ': ' || pi_header);
          UTL_SMTP.WRITE_DATA(v_connection_handle,
                              pi_name || ': ' || pi_header || UTL_TCP.CRLF);
        END;
      BEGIN
       v_src_loc             := BFILENAME('BROKERREPORTS',p_filename);
       v_from_email_address  := p_sender;
       v_to_email_address    := p_recipient;
       v_smtp_host           := 'sbssld1'; --My mail server, replace it with yours.
       v_subject             := p_subject;
       l_message      := 'test';
        /*Preparing the LOB from file for attachment. */
        DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
        DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
        v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
        DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
        l_blob_len := DBMS_LOB.getlength(l_blob);
    /*UTL_SMTP related coding. */
        v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host);
        UTL_SMTP.HELO(v_connection_handle, v_smtp_host);
        UTL_SMTP.MAIL(v_connection_handle, v_from_email_address);
        UTL_SMTP.RCPT(v_connection_handle, v_to_email_address);
        UTL_SMTP.OPEN_DATA(v_connection_handle);
        send_header('From', v_from_email_address || '<'||'>');
        send_header('TO', v_to_email_address || '<'||'>');
        send_header('CC', p_cc        || '<'||'>');
        send_header('Subject', v_subject);
        --MIME header.
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'MIME-Version: 1.0' || UTL_TCP.CRLF);
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            ' boundary= "' || 'SAUBHIK.SECBOUND' || '"' ||
                            UTL_TCP.CRLF);
       UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        -- Mail Body
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Type: text/plain;' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            ' charset=US-ASCII' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, l_message || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        -- Mail Attachment
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                           'Content-Type: application/octet-stream' ||
                            UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            ' filename="' || p_filename || '"' || --My filename
                            UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      /* Writing the BLOL in chunks */
        WHILE l_pos < l_blob_len LOOP
          DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
          UTL_SMTP.write_raw_data(v_connection_handle,
                                  UTL_ENCODE.BASE64_ENCODE(l_buffer));
          UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
          l_buffer := NULL;
          l_pos    := l_pos + l_amount;
        END LOOP;
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        -- Close Email
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            '--' || 'SAUBHIK.SECBOUND' || '--' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
        UTL_SMTP.CLOSE_DATA(v_connection_handle);
        UTL_SMTP.QUIT(v_connection_handle);
        DBMS_LOB.FREETEMPORARY(l_blob);
        DBMS_LOB.FILECLOSE(v_src_loc);
      EXCEPTION
        WHEN OTHERS THEN
          UTL_SMTP.QUIT(v_connection_handle);
          DBMS_LOB.FREETEMPORARY(l_blob);
          DBMS_LOB.FILECLOSE(v_src_loc);
         sssl_internal_error_track(sqlcode,sqlerrm,'SSSL_SEND_MAIL',NULL);
      END;Thanks in Advance.
    Cheers,
    Shan.
    Edited by: Shan on 13 Jan, 2011 12:33 PM
    Edited by: Shan on 13 Jan, 2011 1:05 PM

  • Brand new MBP with display problems.Ghosting & Red Pixels

    Bought a MacbookPro at the apple store in Santa Monica,CA as a gift for sister in law who lives inNepal. When we got to Nepal and she started the computer for the 1st time, the display was ghosting, everything that was gray or blue was red tint, & every highlight was red.Ranthe Hardware test & showed everythingis fine. Would like to exchange for a new machine, but it is so far and dont know when we coming back, any suggestions for repairs, what the problem may be?
    Appreciate the help.

    It looks like a graphics issue. Download gfxCardStatus and try switching graphics mode once. You might get it to work in one of the modes until you can get it repaired or exchanged.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • 24"imac with display problems

    I purchased my iMac from the local apple store on august 31st, that night after about 2 hours of use I noticed the screen had become quite pixelated I rebooted and everything was fine. Since that day I have had many of the same occurences. I have an appointment tomorrow with the local apple store to hopefully get this resolved. Has anyone else had similar problems? I have taken some pictures to show them at the apple store.
    http://gallery.mac.com/zdessa#100003
    Message was edited by: dc297spec

    Hi, I have the same Problem with my iMac 24" 2.8 GHz. I used Rapid Weaver and suddenly there were a "pixelstorm" on my screen. I rebooted the mac and it worked perfect. But after a while using Rapid Weaver the screen turned off completely. That happend twice.
    The Problem is, that this seems to be a fault in a lot of the new iMacs. A friend had the same Pixelstorm and sent the iMac back. Tomorrow he will get the replaced Mac.
    Here you can see, what happens on his screen:
    http://www.ulf-bellersheim.de/imac.AVI
    http://www.ulf-bellersheim.de/imac.JPG
    http://www.ulf-bellersheim.de/imac2.AVI

  • SMTP connection problems in mail with 10.4.7

    I have been using Mail with no problems until updating to 10.4.7.
    I am with BT Broadband for Business, using their SMTP server. I have checked that the update did not tick the SOCKS option in network preferences, but this remains unticked so is not the problem.
    I know for sure that the SMTP settings are correct, and working, as my wife is able to send mail from Outlook on her PC using the same account with no problems.
    I had this problem a couple of days ago, and fixed it by installing the latest combo update of 10.4.7. I tried this again as the problem re-occurred out of the blue, but this time applying the update is not fixing the problem.
    This only applies to outgoing mail, incoming mail still arrives.
    Can anyone help?
    Thanks
    Bob
    PowerMac G5 2.0Ghz Dual Processor, 4Gb RAM Mac OS X (10.4.7)

    I have been using Mail with no problems until updating to 10.4.7.
    I am with BT Broadband for Business, using their SMTP server. I have checked that the update did not tick the SOCKS option in network preferences, but this remains unticked so is not the problem.
    I know for sure that the SMTP settings are correct, and working, as my wife is able to send mail from Outlook on her PC using the same account with no problems.
    I had this problem a couple of days ago, and fixed it by installing the latest combo update of 10.4.7. I tried this again as the problem re-occurred out of the blue, but this time applying the update is not fixing the problem.
    This only applies to outgoing mail, incoming mail still arrives.
    Can anyone help?
    Thanks
    Bob
    PowerMac G5 2.0Ghz Dual Processor, 4Gb RAM Mac OS X (10.4.7)

  • Display problem, new motherboard.

    I am posting really to vent. I have a sick iMac with display problems. It's got vertical white lines and loss of colors. ChumpUSA indicates that the motherboard will need to be replaced and it's going to take four to five business days to get the part.
    I purchased the iMac for a client who I encouraged to switch. They trust me and have purchased two other Macs. They are doing fine, so they aren't soured yet. It's a difficult position in which to find myself. Computers have trouble and need to be fixed, knock wood, I've had very few hardware problems in my 10+ years using Apple products.
    I'm just in a bad spot with the failure of the motherboard (poor quality?) and the length of time my client is without a computer for one of his employees.
    We will work around it, of course. I just don't see why it would take a week to get a part.
    Any advise or words of encouragement are appreciated.

    Sorted myself but will post solution in case others need it.
    Remembered what I had done ages ago when looking at how to stop all recent pages appearing on a new tab.
    To get new SEARCHES appearing in a new tab go to address bar and type
    about:config.................ignore the Dragons
    then go to browser:search:openintab and set to true

  • Cannot send mail with mobile mail software

    I have been trying to send mail with my mobile mail software on my AOL account and my mail won't got through,  But when I click on my mobile web and access my AOL email that way it allows me to send mail with no problem. The problem started today, I have an lg env3 and the latest software version of the mobile mail.

    From working with other customers, the best thing to do would be to remove the email account entirely from the Mobile Email program and re-add it.  If the issue persists, remove the Mobile Email application altogether and redownload it.  If it still persists even after that and all other data services are working such as the browser, My Verizon, etc. call AOL Mobile Support at 866-265-3019. 
    I hope this helps you.  Let us know if it did. 

  • Can't send mail - outgoing server problem

    I am using Mail. OS X.4.6. Yesterday I used Mail with no problem. Today when I 'sent' an email, a pop up told me I couldn't use the outgoing server (the server in the email account selected), and suggested two others (one of which is no longer an account). The outgoing server for the email account selected has not changed.

    Mail keeps information about outgoing servers in a separate list, independently of any specific mail account. The account settings just associate one of the available outgoing servers with each account. Deleting an account doesn't remove the outgoing server from the list. Orphaned or dangling outgoing server entries (i.e. not associated with any account) sometimes cause sending problems, so you may want to fix that, even though it could very well have nothing to do with your problem -- actually, it could very well be that you don't have a problem, and this is just a transient error.
    Go to Preferences > Accounts > Account Information > Outgoing Mail Server (SMTP), choose Edit Server List from the popup menu, and delete any servers that shouldn't be there. The Edit Server List sheet shows the account each outgoing server is associated with.
    Alternatively, Mail comes with some scripts available under the Script menu when that menu is enabled. There is a Manage SMTP Servers there that finds any unused outgoing mail servers and gives you the option to delete them. Type "Script Menu" in Mail Help for more information on this feature.

  • MacBookPro, V.10.5; Firefox 3.6.10; cannot send email "connection problem" - switched to "classic mail" sent no problem ... ?

    MacBookPro, OS x (10.6.5); Firefox 3.6.10; problem recently came up - no changes to system ... "cannot send mail due to connection problem" - When problem with Firefox came up, I could send mail with Thunderbird ... today (third day w/problem) I switched to Firefox "classic mail" and sent mail with no problem

    a day or two later, this problem went away ... -?-

  • Cannot use this version of Mail with this version of OSX issue again

    OK, so here's a new twist on an old favorite. Have been using Mail with no problems since the 10.5.8 update. Last night I shut my Mac down (something I rarely if ever do) and when I turned it on this morning and tried to launch Mac Mail, I got the error message about it not working with this version of OSX. Did NOT update the OS. Did NOT update mail or roll back Mail. Just shut down and turned it back on. Mail is version 3.5. Have tried all the usual fixes to no avail. Any ideas?
    Adam

    All of the above. All of them produced the error. Removed apple.com.mail.plist and restarted, and the problem persisted. My fix was downloading the 10.5.8 standalone updater and reinstalling. This produced the behavior removing the .plist should have and Mail started and I was able to reenter account info and re-index my old mailboxes. So, for now, fixed. But since this happened on its own without a recent install of anything system or 3rd party related, we'll see how long it lasts.
    Message was edited by: Adam Salerno
    Message was edited by: Adam Salerno

  • Display problems in Mail messages with image attachment

    Issue: Seeing intermittent display problems in Mail messages with image attachments
    Annoyance level: minor, but Apple techs need to pass it along
    Details: Regardless of mail client sending to iPhone (Outlook, OWA, Yahoo, Gmail) there are intermittent and what appear to be random occurrances of the pic being half rendered and/or the pic never loading (followed by message saying it can't be retrieved from server). In some instances the picture then appears fully rendered without a problem. Note: Image sizes varied from 14KB to 450KB

    Hi,
    I'm not familiar with C#, but if possible try the following:
    1. Removing all thead and tbody tags from the body of the message.
    2. Changing all inline CSS to embedded CSS.
    I've seen a user said the message stopped showing up after making the changes.
    If the issue persists, please note, since Outlook 2007, Outlook opens the HTML Email and converts it to Microsoft Word format before displaying it to the user. What happens during this process is that many CSS attributes and HTML support is completely removed.
    Some of the most notable absences are background-image, and padding and margin support. Hardly can we do much about this, so the message "If there are problems with how this email is displayed, click here to view it in a web browser" is actually
    a good workaround when we face this problem.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Problem with MacMail on MacBook Air - mail with 32MB attachment appearing in "recovered messages" folder every 12 seconds

    Problem with MacMail on MacBook Air
    3 days ago I failed to send a mail with a large (32MB) attachment - and it is no longer in my outbox, draft mails or sent file.
    BUT a copy of this same mail now appears every about 15 seconds in my "recovered messages" folder
    I noticed when I received a system error saying I had a disk almost full issue - there were over 580 copies of the mail with 32MB attachment in the "recovered messages file"
    I deleted them all, and deleted the Trash
    BUT the message still keeps re-appearing every 15 seconds or so.  So I keep deleting them.
    Since then I have not been able to receive mail (altho' I am able to send) and Mail is VERY slow
    I am running MAC OS X 10.6.8
    I am running Mail version 4.6 (1085)

    Also here's the log before it happened. As you can see there is no activity from 9:48 to 10:00 am when the sound occurred.
    23/02/2014 9:48:12.792 am ntpd[52]: FREQ state ignoring -0.145411 s
    23/02/2014 9:48:15.258 am WindowServer[96]: _CGXHWCaptureWindowList: No capable active display found.
    23/02/2014 9:48:20.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000280
    23/02/2014 9:48:20.000 am kernel[0]: ARPT: 61.319378: AirPort_Brcm43xx::powerChange: System Sleep
    23/02/2014 9:48:20.000 am kernel[0]: ARPT: 61.319390: wl0: powerChange: *** BONJOUR/MDNS OFFLOADS ARE NOT RUNNING.
    23/02/2014 9:48:20.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    23/02/2014 10:00:04.000 am bootlog[0]: BOOT_TIME 1393167604 0
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".

Maybe you are looking for

  • Functions

    Hi all, I am trying to call a function within a function to see if a foriegn key value exists (and if it does, to get the right one) and then build a select statement based on whether it exists or not. As I step through the code in the PL/SQL debugge

  • Why when I click on an app it takes a long time to load, like eBay or Pinterest.

    When I click on my apps, like Pinterest or eBay, it takes an extremely long time to load. This has just recently started happening and to my knowledge nothing has changed. Safari still appears to be running normally. Can anyone help me?

  • Placing date field inline to an Interactive Report search bar

    For a button I can choose "Right of Interactive Report Search Bar" option to place it inline with the IR Search bar. However I need to place a text fileld or select list or Date Field intead. Any ideas? If a template needs to be changed could you ple

  • Condition origin in Header condition type

    Dear Experts, I am on ECC 6.0 and have defined a pricing procedure for PO. I have defined a condition type at the header level ZRB1 for freight. When i create a PO, it does not allow me enter a freight value at the header. The requirement is , e.g, i

  • ZEBRA - customize BARCODE not Printing

    HI All, I have created a label using Bar-One, everything works and prints out fine using the Zebra printer, however I've added a barcode in my label and it doesn't printout at all. This barcode is uses Code 128 and passes in Material Number from the