Mail program doubt

i have used this program for sending mail through SAP.It has two options.First for sending as an html attachement,second for plain text inline with the body of the message.Actually i need the message in html format inline with the body of the message itself(not as an attachement)
In simple words the body of the message want to be in html format,not an attachement..
*& Report  ZMAIL                                                       *
report  zmail                                   .
tables: soos1.
*type-pools: sbdst.
parameters: report like varis-report obligatory.
parameters: variant like varis-variant obligatory.
parameters:reptitle like soos1-recrem  obligatory.
select-options: recnam for soos1-recrem  obligatory.
*{   INSERT         EDPK900415                                        1
selection-screen skip 1.
selection-screen begin of block b1 with frame title text-001.
selection-screen begin of line.
parameters: r1 radiobutton group g1.
selection-screen comment:5(40) text-003 for field r1.
selection-screen position 35.
selection-screen end of line.
selection-screen begin of line.
parameters: r2 radiobutton group g1.
selection-screen comment: 5(40) text-002 for field r2.
selection-screen end of line.
selection-screen end of block b1.
*}   INSERT
data: begin of html_tab occurs 0.
        include structure w3html.
data: end of html_tab.
data : it_pack_list  like soxpl occurs 0 with header line.
data: begin of html_tab_converted occurs 0,
            line(255) type c,
          end of html_tab_converted.
data:  listobject like abaplist occurs 20 with header line.
data:  abap_list like abaplist occurs 20 with header line.
data: icontab(32) occurs 10 with header line.
data: lineno type i, length type i, size type i,
      l_filename like rlgrap-filename.
data: icon_wa  type icon,
      internal type icon-internal,
      existing type c.
data: my_bds type ref to cl_bds_document_set,
      key    type sbdst_object_key,
      files  type sbdst_files,
      wa     type bapifiles.
data: filename type string,
      filefilter type string,
      path type string,
      fullpath type string.
data: user_action type i.
data: cur_guicopdepage(4) type c.
data: gui_codepage(4) type n,        " added for message 500824
      is_unicode type rststype-sel_ok.
data: convert_output type xstring,
      convert_buffer type xstring.
data i type i.
data tablength type i.
data dummy type i.
data list_index like  sy-lsind .
data begin of new_pack_list occurs 10.
        include structure soxpl.
data end of new_pack_list.
data : owner like soud-usrnam.
data: fg_sysdli like sonv-flag,
fg_folrg like soxdl-folrg,
dli_tab_save like soxdl occurs 20 with header line.
data: rec_count like sy-tabix.
data: object_type like sood-objtp value 'RAW'.
data: object_hd_change like sood1 occurs 0 with header line.
data: objcont like soli occurs 0 with header line.
data: attcont_tab like soli occurs 0 with header line.
data: atthead_tab like soli  occurs 0 with header line.
data  so_ali like soli occurs 100 with header line.
data  document_data like sodocchgi1.
data  msg_text(80) type c.           "Message text
data:  length type i, size type i.
data  profile like soprd.
data  subrc like sy-subrc value 0.
data  so_ali_hex type standard table of solix.   "note 604603
data: objpara like selc occurs 0 with header line.
data: objparb like soop1 occurs 0 with header line.
data: receivers like soos1 occurs 0 with header line.
*data: receivers like soos5 occurs 0 with header line.
data: r_dliq type c. "Shared Distrbution List
data: r_dlip type c. "Private Distrbution list
data: rep_title(50) type c. "Report Title
data : begin of dis_lst occurs 10. "Internal table to store DL
        include structure sodm1.
data : end of dis_lst.
data : begin of listtab occurs 100. "Internal Table for List CONTAINER
        include structure abaplist.
data : end of listtab.
data : begin of downtab occurs 1,
line(255),
end of downtab.
data ls_cnt type n.
data:begin of it_mailid occurs 0,
     mailid(100), "  TYPE ZSENDINT_MAILID-MAILID,
     end of it_mailid.
data c1.
c1 = ' '.
shift reptitle left deleting leading c1.
*SELECT MAILID FROM ZSENDINT_MAILID INTO TABLE IT_MAILID WHERE SUBJECT = REPTITLE AND FLAG <> 'X'.
"IF SY-SUBRC = 0.
"CLEAR RECNAM.
"REFRESH RECNAM.
"LOOP AT IT_MAILID.
"MOVE 'I' TO RECNAM-SIGN.
"MOVE 'EQ' TO RECNAM-OPTION.
"MOVE IT_MAILID-MAILID TO RECNAM-LOW.
"APPEND RECNAM.
"ENDLOOP.
"ENDIF.
*S.KARTHIKRAJA 07.10.2006
call function 'LIST_FREE_MEMORY'
  tables
    listobject = listobject
  exceptions
    others     = 1.
submit (report)
using selection-set variant
                 exporting list to memory and return.
import listobject from memory id '%_LIST'.
if listobject[] is initial.
  exit.
endif.
call function 'WWW_HTML_FROM_LISTOBJECT'
       exporting
              REPORT_NAME   =
            template_name = 'WEBREPORTING_REPORT'
       tables
            html          =  html_tab
            listobject    =  listobject
            listicons     =  icontab.
call function 'LIST_TO_ASCI'
  exporting
    list_index         = -1
  tables
    listasci           = downtab
    listobject         = listobject
  exceptions
    empty_list         = 1
    list_index_invalid = 2
    others             = 3.
call function 'TABLE_COMPRESS'       "Schneller Tabellencopy
      tables
           in         = listobject
           out        = so_ali.      "note 604603
           out        = so_ali_hex.   "note 604603
call function 'SO_SOLIXTAB_TO_SOLITAB'           "note 604603
     exporting
          ip_solixtab = so_ali_hex[]
     importing
          ep_solitab  = so_ali[].
call function 'SO_DLI_LIST_READ_XDL'
exporting
private = 'X'
public = 'X'
subscript = 'X'
tables
dli_display_tab = dli_tab_save
exceptions
communication_failure = 1
dl_list_no_entries = 2
owner_not_exist = 3
system_failure = 4
x_error = 5
parameter_error = 6
others = 7.
call function 'SO_DLI_EXPAND'
exporting
system_dli = fg_sysdli
convert = 'X'
tables
member = dis_lst
objpara = objpara
objparb = objparb
exceptions
active_user_not_exist = 1
communication_failure = 2
component_not_available = 3
dl_name_not_exist = 4
folder_not_exist = 5
folder_no_authorization = 6
forwarder_not_exist = 7
object_not_exist = 8
object_no_authorization = 9
operation_no_authorization = 10
owner_not_exist = 11
parameter_error = 12
recurrency_exist = 13
substitute_not_active = 14
substitute_not_defined = 15
system_failure = 16
x_error = 17
others = 18.
refresh receivers.
clear receivers.
move sy-datum  to receivers-rcdat .
move sy-uzeit  to receivers-rctim.
refresh object_hd_change.
object_hd_change-objla = sy-langu. "Language
object_hd_change-objcp = ' '. " Object can be changed byUSER
object_hd_change-objsns = 'F'. " Msg Sensitivity private orbusiness
object_hd_change-objdes = reptitle.
object_hd_change-objnam = object_hd_change-objdes.
append object_hd_change.
if r1 = 'X'.
  move html_tab[] to objcont[].
else.
  move downtab[] to objcont[].
endif.
describe table objcont lines i.
it_pack_list-head_start = 1.
it_pack_list-head_num = 0.
it_pack_list-body_start = 1.
it_pack_list-body_num = i.
it_pack_list-OBJTP = 'RAW'.
move variant to it_pack_list-objnam.
move variant to it_pack_list-objdes.
move 'HTM' to it_pack_list-file_ext.
append it_pack_list.
loop at html_tab.
  call function 'SCP_TRANSLATE_CHARS'
    exporting
      inbuff           = html_tab
      outcode          = gui_codepage
      csubst           = 'X'
      substc_space     = 'X'
      substc           = '00035'
    importing
      outbuff          = convert_output
    exceptions
      invalid_codepage = 1
      internal_error   = 2
      cannot_convert   = 3
      fields_bad_type  = 4
      others           = 5.
  concatenate convert_buffer convert_output into convert_buffer in
  byte mode.
endloop.
i = 0.
describe field html_tab_converted length tablength in byte mode.
while i < xstrlen( convert_buffer ).
  dummy = xstrlen( convert_buffer ) - i.
  if tablength > dummy.
    html_tab_converted-line = convert_buffer+i(dummy).
  else.
    html_tab_converted-line = convert_buffer+i(tablength).
  endif.
  i = i + tablength.
  append html_tab_converted.
endwhile.
receivers-sel = 'X'.
receivers-sndex = ' '. "
receivers-sndpri = '1'. "Priority of the message
receivers-deliver = ' '.
receivers-not_deli = ' '.
receivers-read = ' '.
receivers-recnam = 'U-'.
receivers-mailstatus = 'E'.
receivers-sortclass = '5'.
receivers-recesc = 'U'. " U means Internet Address
receivers-SAP_BODY = 'X'.
receivers-sndart = 'INT'.
loop at recnam.
  receivers-adr_name = recnam-low.
  receivers-recextnam = recnam-low.
  append receivers.
endloop.
owner = sy-uname.
if r1  = 'X'.
  call function 'SO_OBJECT_SEND'
  exporting
object_hd_change = object_hd_change
  object_type = object_type
  outbox_flag = 'X'
  owner = owner
  sender = sy-uname
  tables
  receivers = receivers
packing_list = it_pack_list
  att_cont = objcont
  att_head = atthead_tab
  exceptions
  active_user_not_exist = 1
  communication_failure = 2
  component_not_available = 3
  folder_not_exist = 4
  folder_no_authorization = 5
  forwarder_not_exist = 6
  note_not_exist = 7
  object_not_exist = 8
  object_not_sent = 9
  object_no_authorization = 10
  object_type_not_exist = 11
  operation_no_authorization = 12
  owner_not_exist = 13
  parameter_error = 14
  substitute_not_active = 15
  substitute_not_defined = 16
  system_failure = 17
  too_much_receivers = 18
  user_not_exist = 19
  x_error = 20
  others = 21.
else.
  call function 'SO_OBJECT_SEND'
   exporting
  object_hd_change = object_hd_change
   object_type = object_type
   outbox_flag = 'X'
   owner = owner
   sender = sy-uname
   tables
   objcont = objcont
   receivers = receivers
   exceptions
   active_user_not_exist = 1
   communication_failure = 2
   component_not_available = 3
   folder_not_exist = 4
   folder_no_authorization = 5
   forwarder_not_exist = 6
   note_not_exist = 7
   object_not_exist = 8
   object_not_sent = 9
   object_no_authorization = 10
   object_type_not_exist = 11
   operation_no_authorization = 12
   owner_not_exist = 13
   parameter_error = 14
   substitute_not_active = 15
   substitute_not_defined = 16
   system_failure = 17
   too_much_receivers = 18
   user_not_exist = 19
   x_error = 20
   others = 21.
endif.
commit work.
call function 'SO_DEQUEUE_UPDATE_LOCKS'.

i have not gone thru your source code fully.
maintain the text in Tcode SO10.
use the fn module READTEXT* to read the contents of the text.
cheers
jayanthi.K

Similar Messages

  • My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling from the install DVD - but no go: no longer compatible, evidently.. What to do?

    My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling the Mail program from the install DVD, but no go; apparently that two-year old Mail is no longer compatible with my up-to-date Leopard. I tried deleting the account (hotmail) from Mail and setting up a different account (Yahoo). After loading all the inbox two things happened: first, I still couldn't send, and second, when I closed the Mail window the whole inbox then disappeared and doesn't come back. Although I couldn't reinstall the Mail program from the install DVD, would it still be possible to reinstall the whole system from that DVD? If I do, will I lose files or will there be another problem since that DVD is now over two years old?
    Thanks for any suggestions; they will be much appreciated.
    P.S. I've just noticed that now I can't change the desktop picture: I go through the motions in Preferences, but the new picture doesn't appear on the desktop. Is there a systemic problem?

    You are waiting for an apology to something that happened over a year ago? Really? This is why there is a manager in the store. You have a problem with an employee you speak to the manager. Just like you did on the phone. You would have gotten your apology in July 2013.
    Here is the information about your upgrade fee.
    Upgrade Fee
    It is because when you have a problem you (customers) go running to the store and want to take up the time of the reps to fix it. Other carriers have third parties that deal with technical support and those locations are few and far between. VZW provides this directly through their stores. Also, when you subsidize a $650 and pay $200 VZW has to pay $400. Your monthly service fee doesn't begin to scratch the surface of paying that back. Not with all the money that is put into the network and its improvements.
    Then over a year later you get someone on the phone who apologized and offered to waive the fee on your phone and you didn't take it? That offer won't come down the pike again.
    One thing you should know is that all these employees are people and as such they sometimes come off cross. I doubt that you speak to everyone so sweetly all the time. Cut them a little slack and put this whole thing behind you after 15 months. Either upgrade with VZW or move on.

  • How do I sync comcast email with the mail program on my iPhone and iMac

    I have two email accounts set up on my iPhone. One is my gmail account which I use for work. The other is the comcast email, my default home email address. The comcast account doesn't sync iPhone, web mail, or the mail program on my iMac at home. My gmail account does. For instance, I send an email from my phone it shows up in the sent box when I go to the mail web page on my work and home computer. With comcast, if I send an email from my phone it stays on my phone. I have to bcc or cc to myself if I want the sent message to show up on the home computer or on the mail web page.

    Unfortunately that is really the only work around since
    Comcast uses POP3 and not IMAP like Gmail or
    iCloud.
    I had received an email quite some time ago that they
    were beta testing IMAP with select customers but I doubt
    if it has gone much further than that.

  • Mail won't send to spouse's Mail program

    My wife and I both have iMacs, running 10.6.8, and send emails to members of our respective singing groups. We often copy each other so we can verify the message was sent. Our outgoing server is Comcast, and incoming is either Comcast, Earthlink or mac.com, depending upon the address.  When I send a group message to my chorus members, and copy her at any of her addresses, that mail item does not arrive - although the remainder do. Similarly, when she sends one from her iMac and copies me, I don't receive it. If she copies my mac.com account, it DOES arrive.
    Interestingly, if we send the same email from our iPads or iPhones, we receive the copy. This has only started in the past few months, so I wonder if one of the security patches didn't cause this issue. We have had times when, according to the Mail program, emails were sent, but NO ONE received them, but that happens usually after using a bulk mailing program (MaxProg) which we have now discontinued. Would upgrading to Lion help this? This is very confusing....

    I can't see how this is a Mail problem, so I doubt that upgrading to Lion would help.
    Is it only when emails are cc'd to spouses that failure occurs, or does it also occur when the spouse is in the To field?
    Have you checked that messages are not going straight to junk?
    Have you any Mail rules in operation that might cause the problem?
    If the spouse is the only recipient does the problem occur?

  • Can't access mail program'

    I can't access my mail program on mac book air.
    OSX 10.9.5
    i deleted 1300 emails at one time.  Since then each time I try to enter the mail program, I get kicked out.
    I restarted the computer ,after several attempts to access the email program, but still have the problem.
    I know my start up disk is almost full.
    What can I do now?

    For information about the Other category in the Storage display, see this support article. If the Storage display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
              iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation—not the mythical 10%, 15%, or any other percentage. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside a photo or iTunes library will corrupt the library. Changes to such a library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Ignore any other messages that appear in the Terminal window.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

  • Using iPad mail program I have a draft of an email. I attempted to "cancel" and "delete draft" but it is still on my screen even after shutting down and restarting. How do I exit so that I can use other mail functions?

    Using iPad mail program I have a draft of an email. I have attempted to "cancel" this and "delete draft" but the email stays on my screen. How can I exit this so that I can use other email functions?

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How to I get a link with a "Mail to" address to open up a Compose window in my Yahoo mail, rather than in the Mail progrom on my Mac. I do not use the Mac Mail program.

    How to I get a link with a "Mail to" address to open up a Compose window in my Yahoo mail, rather than in the Mail progrom on my Mac. I do not use the Mac Mail program.
    == This happened ==
    Not sure how often
    == always

    Thank you, "the-edmeister" -- You render a great service, one that lifts my spirits.
    Your answer also taught me to be a little more persistent, as I had started looking at Preferences, and just didn't notice the icons (including Applications) at the top of that window that would have led me to my answer.
    Dave

  • For no apparent reason, my email will not autofill addresses. I have no problem on IE, Chrome or Opera. This problem just started with firefox within the last 24 hours. My mail server is AT&T/Yahoo, and I use webmail - not a mail program.

    With all other browsers, when I compose an email, once I start to put the recipient's name in the To box, it will autofill the name if it is in my Contacts. This has been the case with firefox until the last 24 hours. Now, firefox does not automatically recognize any of my contacts. This problem is not happening on IE, Chrome, or Opera. I access my email through my AT&T/Yahoo account on the web, not through a mail program.

    please try to uninstall the adobe flash plugin from the windows control panel. afterwards manually delete any leftover files in ''C:\Windows\SysWOW64\Macromed\Flash'' and download & install the plugin again (uncheck the option to install the bundled security software): www.adobe.com/go/getflashplayer

  • How can I update my Mail program in 10.6.8 to iCloud Mail?

    I am running 10.6.8 on my iMac, which is my work "workhorse." I can't update it to Lion because I can't afford to update Quark/Photoshop et al that I'd need. And it works fine.
    I also have a Macbook Air running the latest Lion, as well as an iPod 5 running IOS7. Both access my iCloud mail address and folders/filtering set up on iCloud.
    However, the Mail program on my iMac is still showing my MobileMe mailbox (and MobileMe is in my system preferences). I had an elaborate filtering-to-folders set up in Mail for my MobileMe account (not in the online MobileMe). I've disabled all the filtering in my Mail program, but iCloud still sends some mail to the older folders I had set up in the program, overriding the new folder-filtering I have set up on iCloud.
    So, sometimes I'll get an email sent to my .me email address from a client which I cannot see on my Macbook Air (or iPod) because it's sent to a folder on my iMac. I'm semi-retired so don't do much work anymore so I'd rather not "fire up" the iMac unless I've work to do. But as it is with the Mail situation, I have to leave it on all the time or I can miss client email.
    My question is, can I get delete my "mobileme" account in my iMac Mail program and then add my iCloud account to it? I assume the MobileMe in the iMac's system preferences is there for good, because I can't update to Lion. Will that fix my problem, or is that even do-able?
    I'm not sure I've stated this clearly. I'm trying to get total coordination between my iMac, MB Air, and iPod mail accounts in the Mail programs of each device without having to resort to using iCloud mail online on my iMac. Perhaps that's unavoidable?
    Any help appreciated. If clarification needed, I'll try to explain this better... Thanks all!
    Nicol K

    You can perfectly well access email in 10.6.8 - I'm doing it myself - and if you are receiving @me.com mail you are already doing so. the @icloud.com version of the address is exactly the same thing, and messages to it will arrive in the inbox alongside those to @me.com.
    However if you have set up Rules to act on incoming @me.com mail it obviously won't act on @icloud.com messages, so you will have to duplicate the Rules if you want to keep them.
    If you want to try starting over you can delete the account and set it up again, using the method described here:
    Entering iCloud email settings manually in Snow Leopard or Leopard
    You can't access other iCloud facilities in Snow Leopard but if all you are interested in is the email you have no need to upgrade to Mountain Lion.

  • Mail won't display the viewer window, and it will not close (force quit does not show in menu bar).  Can't shut down to reboot because the open mail program prevents it.   Any advice?

    Mail does not show the viewer window even when new viewer window is cliced.  I tried to close mail and reopen, but it will not close, and force quit option does not appear in window bar.   I tried to shut down the computer and reboot, but it cannot close because of open mail program it says.    Help!

    Many thanks.  Once I was able to close mail, it reopened and behaved quite normally.  Thank you.  I'll remember the option quit for force quite!

  • Mail program wont open

    Hi all
    I have recently reinstalled OSX 10.4.7 after a HD crash and found that although everything is as it was before....the Mail program crashes upon opening. Every 3rd attempt at opening, it takes me through the POP/SMTP setup, but then crashes when it gets to the end. The next 2-3 times it crashes a few seconds after clicking on the icon.
    I am a bit bamboozled to be honest??? In the old days of OS 8 and 9 this sort of think often pointed to memory problems...but whole system is running perfectly otherwise (and has 1GB of RAM installed).
    Is it possible to reinstall just the Mail application?? I dont wanna have to transfer to a different application (like Outlook etc..) as the Apple Mail is pretty good/easy to use.
    Any advice would be appreciated...
    Thanks
    Steve
    PowerMac G5   Mac OS X (10.4.7)  
    PowerMac G5   Mac OS X (10.4.7)  

    CX9, your problem isn't really the same, so it should be no surprise that what you've tried so far didn't work.
    Verify/repair your disk first (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all filesystem issues, if any, reinstall the Mail application as described here:
    Custom installs in Mac OS X 10.4
    If the version of the system software on your installation disks is earlier than what you're using now (and only in that case), then you must also reinstall the corresponding Combo Update afterwards, to bring the Mail application back in sync with the rest of the system:
    Mac OS X 10.4.7 Combo Update for PPC
    Mac OS X 10.4.7 Combo Update for Intel
    You may also want to read the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk before installing the update, and no applications should be running while installing it.
    If you continue experiencing problems after doing all the above, please start a new topic describing them, unless you really believe your problem is the same as the one being discussed in this thread.

  • I have os 10.8.5.  my mail program is horribly slow, though the rest of my functions are all good.  ?solutions

    I have OS X 10.8.5.  All is well, but my mail program is very slow.  It takes way too long to open/close/delete an email.  ??any thoughts on how to fix?

    Quit Mail if it's running. This procedure will have no effect unless you quit Mail when you begin.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    sqlite3 L*/C*/*.mail/*/L*/*/*/C*.db vacuum; sqlite3 L*/M*/*/*/E*ex vacuum
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    You should see a new line ending in a dollar sign ($) appear below what you entered. If not, press return. You can then quit Terminal and relaunch Mail. Test.

  • Mail program won't open after restore

    My Mail program wont open after restoring my phone. It goes to the blank main screen then closes. I have restored it 4 times and still no luck. Any Ideas?

    Reboot (not turn off and on).
    Press and hold BOTH the home and lock buttons. Keep holding. Don't let go when it says slide to unlock. Don't let go until you see the Apple Logo.
    Turning off or on just puts to hibernation and back. Any issues remain. Not sure why a restore didn't fix it, but you should always do a reboot before trying a restore. Far easier and fixes just about all glitches.

  • Mail: new message window blocks the Mail program

    Hello,
    When you write a new mail, the new nice interface makes the window of the new mail appear as it did on the iPad. However, this does not allow you to use the Mail program for other uses: for instance, I used to open the new mail window, and continuously switch to other received emails to re-read while typing the new one or similar.
    This is not permitted anymore and the only way I found is to open a new entire mail window, which is not exactly the best solution...
    Does anyone know how to make the popup window of the new email "non-blocking"?
    I think this is a nice-looking feature but VERY counterproductive.
    Thanks a lot,
    Marco

    Hi Marco,
    You can send feedback to Apple at http://www.apple.com/feedback
    As far as I am aware there is currently no way to change the new message overlay in full screen mail.
    J.C

  • Mail Program Not Responding... spinning wheel of death...???

    I try to open my mail program and it opens, but then the ball spins endlessly and dosen't load any information. To get it to stop I have to "force close"... I can't seem to find any info on this..? What can I do... anyone else experence this?
    Thank you for your help in advance..!
    -Dave
    Power Mac G5   Mac OS X (10.4.5)   Dual 2.7 Ghz, Memory 2GB
    Power Mac G5   Mac OS X (10.4.5)   Dual 2.7 Ghz, Memory 2GB

    HI,
    I have not heard of anyone saying that they seemed to have found a limit to the open conversations displayed in Messages.
    I would try to start the app again whilst you have the Activity Monitor open (Applications/Utilities) and see in Messages or IMAgent become "Stuck" or unresponsive.
    It may also pay to open the Console App (Also Applications/Utilities) to see if there any items relating to the Messages app there.
    If there is nothing obvious in either Activity Monitor or Console then I would delete com.apple.ichat.plist
    Have the Finder as the "Front" app
    Use the Go Menu > Go to Folder and type ~/Library/Preferences in the Dialogue box that appears.
    Find the .plist and drag to the Trash.
    Restart Messages.
    9:12 PM      Wednesday; January 2, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for