How to save messages in mail

I do not know how to save emails to keep them from being delete when cleaning up my messages.
How do I sequester certain messages so this does not happen?
Thanks

OK, more detail...I have smartboxes that I use...everything with my address goes into that smartbox...even those that I saved in its own "sequestered" area but since they also show up on the smartbox and this is where I usually do my maintanance these still are available for being deleted.  If one uses smartboxes, one is not so smart apparently when doing cleaning on their mail system.
It appears if I want to do what I do I need to do I need to delete my "smartboxes" and forget that I that they are available.
BTW, I am new to the world of Apple. I only have had my Mac Mini installed for less than a month and am trying to get used to the limitations in the world of Apple.  These are big limitations in how to think about the file system, where any output file is only available to the producing software program.  Sandboxing keeps output files limited to only the program that produced them.  Passing a file off to another area (program) is not possible I think in the Apple world, right? Unless you take it out of the Apple world completely and re-introduce it back into a different program by importing it...
I know these limitations are due to the security provided by the OSX system but it is a very different way of thinking that I have yet to get my mind around.

Similar Messages

  • How to save message when getting "email not responding"

    how to save message when getting "email not responding"

    How could you even know if you have a message if the email account isn't responding?
    Quit the mail app and reboot your iPad.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the mail icon. Tap the home button twice.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How to save message into internal table?

    Hi,everyone!
    I have a problem when I'm coding.I want to store messages into a internal table.Can you help me?
    Thanks!

    Hello Feng
    If you are already working on SAP basis release >= 6.20 I would recommend the most versatile message handler of all: interface <b>IF_RECA_MESSAGE_LIST</b>
    Perhaps you will find the following sample report ZUS_SDN_APOLLO_13
    (see also: <a href="https://wiki.sdn.sap.com/wiki/display/profile/2007/07/09/MessageHandling-FindingtheNeedleintheHaystack">Message Handling - Finding the Needle in the Haystack</a>) useful.
    *& Report  ZUS_SDN_APOLLO_13
    REPORT  zus_sdn_apollo_13
      LINE-SIZE 200.
    TYPE-POOLS: abap.
    TYPES: BEGIN OF ty_s_outtab.
    TYPES:   status     TYPE exception.
    INCLUDE TYPE bapiret2  AS msg.
    TYPES: END OF ty_s_outtab.
    TYPES: ty_t_outtab  TYPE STANDARD TABLE OF ty_s_outtab
                        WITH DEFAULT KEY.
    DATA:
      gs_layout         TYPE lvc_s_layo,
      gt_outtab         TYPE ty_t_outtab.
    DATA:
      gd_title          TYPE lvc_title,
      gd_msgv           TYPE symsgv,
      gd_msg            TYPE bapi_msg,
      gs_msg            TYPE recamsg,
      gs_return         TYPE bapiret2,
      gt_return         TYPE bapirettab,
      go_msglist        TYPE REF TO if_reca_message_list,
      go_random         TYPE REF TO cl_random_number,
      gif_random        TYPE REF TO if_random_number.
    PARAMETERS:
      p_opt1  RADIOBUTTON GROUP radi  DEFAULT 'X',
      p_opt2  RADIOBUTTON GROUP radi,
      p_opt3  RADIOBUTTON GROUP radi.
    SELECTION-SCREEN ULINE.
    PARAMETERS:
      p_opt4  RADIOBUTTON GROUP radi,
      p_opt5  RADIOBUTTON GROUP radi,
      p_opt6  RADIOBUTTON GROUP radi.
    SELECTION-SCREEN ULINE.
    PARAMETERS:
      p_count    TYPE numc3     DEFAULT '4',
      p_level    TYPE ballevel  DEFAULT '7'.
    DEFINE mac_build_msg.
      clear: gs_msg.
      gs_msg-msgty = &5.
      gs_msg-msgid = '00'.
      gs_msg-msgno = '398'.
      gs_msg-msgv1 = &1.
      gs_msg-msgv2 = &2.
      gs_msg-msgv3 = &3.
      gs_msg-msgv4 = &4.
      gs_msg-detlevel = &6.
    END-OF-DEFINITION.
    *  msgty
    *  msgid
    *  msgno
    *  msgv1
    *  msgv2
    *  msgv3
    *  msgv4
    *  msgv1_src
    *  msgv2_src
    *  msgv3_src
    *  msgv4_src
    *  detlevel
    *  probclass
    *  alsort
    *  time_stmp
    *  msg_count
    *  context
    *  params
    START-OF-SELECTION.
      " Create message handler
      go_msglist = cf_reca_message_list=>create( ).
      " Create random number instance
      CREATE OBJECT go_random TYPE cl_random_number.
      gif_random ?= go_random.
      gif_random->init( ).
      PERFORM message_handling_1.
      PERFORM message_handling_2.
      PERFORM message_handling_3.
      PERFORM message_handling_4.
    END-OF-SELECTION.
    *&      Form  MESSAGE_HANDLING_1
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_1 .
      CHECK ( p_opt1 = abap_true ).
      gd_title = 'Information System 1 (IS1)'.
      SET TITLEBAR 'TITLE' WITH gd_title.
      WRITE: / 'Apollo 13 Mission'.
      WRITE: / syst-uline.
      WRITE: / 'Take-Off             -> ok'.
      WRITE: / 'Leaving Orbit        -> ok'.
      WRITE: / 'Trajectory           -> ok'.
      WRITE: /.
      FORMAT COLOR COL_NEGATIVE.
      WRITE: / 'Explosion happened   -> not ok'.
      WRITE: / 'Command and Service module (CSM) -> damaged'.
      FORMAT RESET.
      WRITE: / 'Lunar module (LM)    -> not affected, ok'.
      MESSAGE text-hou TYPE 'S'.
    ENDFORM.                    " MESSAGE_HANDLING_1
    *&      Form  message_handling_2
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_2 .
    * define local data
      DATA:
        ld_success(6)  TYPE n,
        ld_warning(6)  TYPE n,
        ld_failure(6)  TYPE n,
        ld_total(6)    TYPE n.
      CHECK ( p_opt2 = abap_true ).
      gd_title = 'Information System 2 (IS2)'.
      SET TITLEBAR 'TITLE' WITH gd_title.
      PERFORM generate_messages.  " simulation of messages
      CALL METHOD go_msglist->get_list_as_bapiret
        IMPORTING
          et_list = gt_return.
      " Calculate message types and total
      ld_total   = 0.
      ld_success = 0.
      ld_warning = 0.
      ld_failure = 0.
    " Print messages as WRITE list
      LOOP AT gt_return INTO gs_return.
        IF ( gs_return-type = 'E' ).
          ADD 1 TO ld_failure.
        ELSEIF ( gs_return-type = 'W' ).
          ADD 1 TO ld_warning.
        ELSE.
          ADD 1 TO ld_success.
        ENDIF.
      ENDLOOP.
      ld_total = ld_success + ld_warning + ld_failure.
      WRITE: / 'Total Message =', ld_total.
      WRITE: / 'Failures      =', ld_failure.
      WRITE: / 'Warnings      =', ld_warning.
      WRITE: / 'Successes     =', ld_success.
      WRITE: / syst-uline.
      SKIP.
    " Colouring depending on message type
      LOOP AT gt_return INTO gs_return.
        IF ( gs_return-type = 'E' ).
          FORMAT COLOR COL_NEGATIVE.
        ELSEIF ( gs_return-type = 'W' ).
          FORMAT COLOR COL_TOTAL.
        ELSE.
          FORMAT RESET.
        ENDIF.
        WRITE: / gs_return-type, gs_return-message+0(100).
      ENDLOOP.
    ENDFORM.                    " message_handling_2
    *&      Form  message_handling_3
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_3 .
    * define local data
      DATA:
        ls_outtab    TYPE ty_s_outtab.
      DATA:
        ld_success(6)  TYPE n,
        ld_warning(6)  TYPE n,
        ld_failure(6)  TYPE n,
        ld_total(6)    TYPE n.
      CHECK ( p_opt3 = abap_true ).
      gd_title = 'Information System 3 (IS3)'.
      SET TITLEBAR 'TITLE' WITH gd_title.
      PERFORM generate_messages.  " simulation of messages
      CALL METHOD go_msglist->get_list_as_bapiret
        IMPORTING
          et_list = gt_return.
      REFRESH: gt_outtab.
      " Calculate message types and total
      ld_total   = 0.
      ld_success = 0.
      ld_warning = 0.
      ld_failure = 0.
    " Define the logic for setting exception status (LED)
      LOOP AT gt_return INTO gs_return.
        CLEAR: ls_outtab.
        ls_outtab-msg = gs_return.
        IF ( gs_return-type = 'E' ).
          ls_outtab-status = '1'.  " red
          ADD 1 TO ld_failure.
        ELSEIF ( gs_return-type = 'W' ).
          ls_outtab-status = '2'.  " yellow
          ADD 1 TO ld_warning.
        ELSE.
          ls_outtab-status = '3'.  " green
          ADD 1 TO ld_success.
        ENDIF.
        APPEND ls_outtab TO gt_outtab.
      ENDLOOP.
      ld_total = ld_failure + ld_warning + ld_success.
      CLEAR: gs_layout.
      gs_layout-cwidth_opt = abap_true.
      gs_layout-zebra      = abap_true.
      gs_layout-excp_fname = 'STATUS'.
      gs_layout-excp_led   = abap_true.
      gs_layout-smalltitle = abap_true.
      CONCATENATE 'T(' ld_total   ')  '
                  'E(' ld_failure ')  '
                  'W(' ld_warning ')  '
                  'S(' ld_success ')  '
        INTO gd_title SEPARATED BY space.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
        EXPORTING
          i_structure_name = 'BAPIRET2'
          i_grid_title     = gd_title
          is_layout_lvc    = gs_layout
        TABLES
          t_outtab         = gt_outtab
        EXCEPTIONS
          OTHERS           = 1.
    ENDFORM.                    " message_handling_3
    *&      Form  message_handling_4
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_4 .
    * define local data
      CHECK ( p_opt4 = abap_true   OR
              p_opt5 = abap_true   OR
              p_opt6 = abap_true ).
      IF ( p_opt4 = abap_true ).
        gd_title = 'Information System 4 (IS4)'.
        SET TITLEBAR 'TITLE' WITH gd_title.
      ELSEIF ( p_opt5 = abap_true ).
        gd_title = 'Information System 5 (IS5)'.
        SET TITLEBAR 'TITLE' WITH gd_title.
      ELSE.
        gd_title = 'Information System 6 (IS6)'.
        SET TITLEBAR 'TITLE' WITH gd_title.
      ENDIF.
      PERFORM generate_messages.  " simulation of messages
      PERFORM display_log.
    ENDFORM.                    " message_handling_4
    *&      Form  GENERATE_MESSAGES
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM generate_messages .
    * define local data
      mac_build_msg 'Apollo 13 Mission: Spacecraft'
                     space space space 'I' '1'.
    **  DEFINE mac_build_msg.
    **    clear: gs_msg.
    **    gs_msg-msgty = &5.
    **    gs_msg-msgid = '00'.
    **    gs_msg-msgno = '398'.
    **    gs_msg-msgv1 = &1.
    **    gs_msg-msgv2 = &2.
    **    gs_msg-msgv3 = &3.
    **    gs_msg-msgv4 = &4.
    **    gs_msg-detlevel = &6.
    **  END-OF-DEFINITION.
      go_msglist->add( is_message = gs_msg ).
      DO 6 TIMES.
        CASE syst-index.
          WHEN '1'.
            mac_build_msg 'Command and Service Module (CSM)'
               space space space 'I' '2'.
          WHEN '2'.
            mac_build_msg 'Lunar Module (LM)' space space space 'I' '2'.
          WHEN '3'.
            mac_build_msg 'Additional Module (M-1)'
              space space space 'I' '2'.
          WHEN '4'.
            mac_build_msg 'Additional Module (M-2)'
              space space space 'I' '2'.
          WHEN '5'.
            mac_build_msg 'Additional Module (M-3)'
              space space space 'I' '2'.
          WHEN '6'.
            mac_build_msg 'Additional Module (M-4)'
              space space space 'I' '2'.
          WHEN OTHERS.
            EXIT.
        ENDCASE.
        go_msglist->add( is_message = gs_msg ).
    "   recursive call of routine
        PERFORM generate_messages_1 USING syst-index 'Modul' '3'.
      ENDDO.
    ENDFORM.                    " GENERATE_MESSAGES
    *&      Form  GENERATE_MESSAGES_1
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM generate_messages_1
                         USING
                            value(ud_index)     TYPE i
                            value(ud_msgv)      TYPE symsgv
                            value(ud_detlevel)  TYPE ballevel.
    * define local data
      DATA:
        ld_integer         TYPE i,
        ld_msgty           TYPE symsgty,
        ld_msgv            TYPE symsgv,
        ld_detlevel        TYPE ballevel.
      DO p_count TIMES.
        WRITE syst-index TO ld_msgv NO-ZERO LEFT-JUSTIFIED.
        IF ( ud_detlevel = '3' ).
          CONCATENATE ud_msgv ld_msgv INTO ld_msgv
            SEPARATED BY space.
        ELSE.
          CONCATENATE ud_msgv ld_msgv INTO ld_msgv
            SEPARATED BY '.'.
        ENDIF.
        CONDENSE ld_msgv.
        gd_msgv = ld_msgv.
        IF ( ud_index = 1 ).
          ld_integer = gif_random->get_random_int( 300 ).
          IF ( ld_integer = 1 ).
            ld_msgty = 'E'.
            CONCATENATE gd_msgv 'failed' INTO gd_msgv SEPARATED BY ' -> '.
          ELSEIF ( ld_integer BETWEEN 1 AND 10 ).
            ld_msgty = 'W'.
            CONCATENATE gd_msgv 'check(?)' INTO gd_msgv SEPARATED BY ' -> '.
          ELSE.
            ld_msgty = 'S'.
            CONCATENATE gd_msgv 'OK' INTO gd_msgv SEPARATED BY ' -> '.
          ENDIF.
        ELSE.
          ld_msgty = 'S'.
          CONCATENATE gd_msgv 'OK' INTO gd_msgv SEPARATED BY ' -> '.
        ENDIF.
        mac_build_msg gd_msgv space space space ld_msgty ud_detlevel.
        go_msglist->add( is_message = gs_msg ).
        IF ( ud_detlevel < p_level ).
          ld_detlevel = ud_detlevel + 1.
          PERFORM generate_messages_1 USING ud_index ld_msgv ld_detlevel.
        ENDIF.
      ENDDO.
    ENDFORM.                    " GENERATE_MESSAGES_1
    *&      Form  DISPLAY_LOG
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM display_log .
    * define local data
      DATA:
        ld_handle           TYPE balloghndl,
        lt_log_handles      TYPE bal_t_logh,
        ls_profile          TYPE bal_s_prof.
    " Get log handle of collected message list
      ld_handle = go_msglist->get_handle( ).
      APPEND ld_handle TO lt_log_handles.
      IF ( p_opt4 = 'X' ).
    *   get a display profile which describes how to display messages
        CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET'
          IMPORTING
            e_s_display_profile = ls_profile.  " tree & ALV list
      ELSEIF ( p_opt5 = 'X' ).
    *   get standard profile to display one log
        CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET'
          IMPORTING
            e_s_display_profile = ls_profile.
      ELSE.
        CALL FUNCTION 'BAL_DSP_PROFILE_NO_TREE_GET'
          IMPORTING
            e_s_display_profile = ls_profile.
      ENDIF.
    * set report to allow saving of variants
      ls_profile-disvariant-report = sy-repid.
    *   when you use also other ALV lists in your report,
    *   please specify a handle to distinguish between the display
    *   variants of these different lists, e.g:
      ls_profile-disvariant-handle = 'LOG'.
      CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'
        EXPORTING
          i_s_display_profile          = ls_profile
          i_t_log_handle               = lt_log_handles
        EXCEPTIONS
          profile_inconsistent         = 1
          internal_error               = 2
          no_data_available            = 3
          no_authority                 = 4
          OTHERS                       = 5.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_LOG
    Regards
      Uwe

  • How to save messages to disk from a Mail rule?

    I'm a bit of an Applescript newbie, but I'm trying to attach an AppleScript to a rule in Mail to automatically save the raw text source of certain mail messages to a folder, where I can further process them.
    Here's what I have so far. It compiles, is saved in my Mail scripts folder, and It is attached to the rule in Mail, but I get no evidence that it runs (no output file(s), no dialogs, no messages in the console or system logs). I tried both the slash and colon in pathnames, not knowing whether Mail wants POSIX or Mac-style paths.
    using terms from application "Mail"
    on perform mail action with messages theMessages
    tell application "Mail"
    repeat with eachMessage in theMessages
    save the source of eachMessage in "hd/Users/me/Desktop/slash.txt" as text
    save the source of eachMessage in "hd:Users:me:Desktop:colon.txt" as text
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    Any suggestions?

    You can't save in Mail app, but you can use shell echo to output to a file. Try:
    using terms from application "Mail"
    on perform mail action with messages theMessages
    tell application "Mail"
    repeat with eachMessage in theMessages
    set msg_source to source of eachMessage
    do shell script "/bin/echo " & quoted form of msg_source & " >> ~/Desktop/slash.txt"
    end repeat
    end tell
    end perform mail action with messages
    end using terms from

  • How to save an e-mail as an .eml format and customize the name of the file, for example the name of the file would be "date, time, sender, title"?

    It would be fantastic if when saving my e-mails to my computer the file name could be customized to be something different that just the title of the message. As I suggested in the question if it could be set up to be "date, time, sender, title" it would be great, a lot of help when passing an .eml file between co-workers, or simply organizing your e-mails in folders. Is it possible and if yes, how is it done?

    Install [https://addons.mozilla.org/en-us/thunderbird/addon/importexporttools/ ImportExportTools] and adjust the Options (see picture).
    http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html

  • How to archive messages in Mail when using Gmail?

    I'm quite happy with the new look they've given Mail in OSX Lion and I was thrilled to see the Archive button, as I'm a Gmail user. But, as you might now, that Archive button does not move messages to "All Mail" as Gmail would. Instead it creates a new IMAP folder, which is then created in your Gmail account which is not what we are after. On my iPhone, moving the message to the "All Mail" folder does the trick, however I just tried that in Lion's Mail and it seems to work (from a Mail perspective) but once I go into Gmail (web) the messages are still there in the inbox. I guess that Gmail does not move them as the messages are already in the All Mail folder. I know it is not (at the moment) possible to modify how the "Archive" button works, but does anyone know if I can at least move the messages into the "All Mail" folder? I was doing it in Snow Leopard and it worked just fine.

    Make sure you have Auto-Expunge turned on in your GMail settings under 'Forwarding and POP/IMAP'. I had the same issue, and turning this on did the trick.

  • Anyone know how to save messages/photos once Ipod is in locked 'connect to iTunes mode'/recovery mode?

    Is there anyway to get back to normal mode after the image of the 'USB connect to iTunes' appears? I have many texts that I need to save, and I'm afraid the only way to exit this mode is to restore my iPod. I hope this could some how be avoided, whereas I could avoid restoring my ipod so that I could keep all my messages. Does anyone have a clue on how to fix this issue? Is there a way to save my data on my ipod, or exit this locked screen image while keeping my data? Please, anything helps!

    See if one of these programs will kick the iPod out of recovery mode
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    and                                           
    RecBoot tip
    For MAC or PC       
    The Firmware Umbrella - TinyUmbrella
    Next:
    Restore  backup. See the restore topic of:
    iOS: How to back up
    - After restoring maybe via How to perform iPad recovery for photos, videos
    Wondershare Dr.Fone for iOS: iPhone Data Recovery - Wondershare Official     

  • Does anyone know how to restore messages in mail?

    The install was funky and a large number of my messages were moved to a TC folder. I can open them individually but they don't show up in mail.
    I cannot just drag and drop because the new mail file/folder format is different in Lion.
    Any thoughts?
    Thank you very much.
    GL

    Hi and Welcome to the Forums!
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Best!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Time Machine - how to save work and mail after 'restore to' date

    OK, things have gone seriously wrong on my girlfiends almost new 21" iMac.
    First Excel wouldn't open a week ago, and now Quark won't launch and Word seems to be corrupted.
    Time to go back in time.... (cue wibbly wobbly special effect)
    We reckon it was definitely ok about a month ago. She backed up regularly.
    1- Is there a way to just go back with the apps and OS and leave everything else alone?
    2 - Failing that, she can back up all her recent work, but how to keep the mails in the Outlook mailbox that have been recieved since the 'go back' time?
    Many thanks.

    Install [https://addons.mozilla.org/en-us/thunderbird/addon/importexporttools/ ImportExportTools] and adjust the Options (see picture).
    http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html

  • How to save e-mails on the hard drive

    How to save my e-mails on the memory of my MacBook Air ?

    If you are using a POP account (and it sounds like you are) follow these insructions to keep a copy of mail on the server as well as locally.
    Click on the Mail menu and choose Preferences,
    Click on the Accounts icon, and select your email account on the left side,
    Go to the tab called Advanced, and change the settings of the checkbox called Remove copy from server after retrieving a message:
    if that checkbox is UNchecked, then all your messages will always stay on the server
    if that checkbox is checked, then the messages will only stay on the server as long as specified in the drop-down box underneath
    if that checkbox is checked and the drop-down box is set to Right Away, then your account will behave as a regular POP3 account (the messages will be downloaded to your computer and then removed from the server right away)
    Click OK to confirm

  • Save messages to memory card 3230

    does anyone know how to save incoming messages to memory card automatically instead of to phone memory in 3230 plz?

    See this thread on how to save messages to the memory card on the N70. I'm guessing the 3230 should be the same.
    S.
    History: Motorola MR30, Nokia: 7110, 7650, N70, N80, N82, X6 (32GB), Samsung Galaxy SII
    Current: Samsung Galaxy Note3 Black

  • How long does Mail save messages?

    How long does Mail save messages? What happens to them at the end of that period?

    Depends. If you have a POP account and download your messages, then they are on your hard drive until you delete them. However, unless you enable the option to save email messages on the server once downloaded the message are deleted from the server immediately. Your email ISP may retain backups for some period of time, but you would need to ask them about it.
    If you have and IMAP account your messages are saved on the server unless you delete them. They will be retained on the server indefinitely.

  • How to save sent messages in mail??

    For the life of me, I cannot figure out a rule that simply saves sent mail in the sent folder and marks it as read. I do not see a simple "save sent mail" setting in preferences, so I set up a rule that I want applied to outgoing mail only, and the problem is that it's being applied to outgoing and incoming. Here is the closest I could come up with:
    If all of the following conditions are met:
    -from is equal to (my email address)
    perform the following actions:
    -move message to mailbox sent
    -mark as read
    So with this rule everything works correctly except all of the mail that is sent from my email address to my email address (such as an automated reminder email) is going into the sent mail and marked as read. If I select "copy" message to mailbox, two copies are saved in mail.
    I had this working correctly in Tiger, not sure if there used to be a saved sent mail setting or if my rule was somehow different and I'm not figuring out what it was.
    After all this, I'm sure someone is going to point out something that's right in front of my face.
    Message was edited by: chris_phs

    I am using a simple pop account. My goal is to simply save all sent mail in the sent folder while having them marked as read. The only setting in preferences I see regarding sent mail is under: accounts/mailbox behaviors/erase copies of sent mail when -> select Never.
    I have never selected, but sent mail is not being saved in the sent folder without the rule I created. Although the rule doesn't do exactly what I want because it is applied to both incoming and outgoing mail and I only want it applied to outgoing. I'm pretty sure I shouldn't even need a rule with "never" selected under mailbox behaviors and mail is just not functioning properly. I've seen some other threads about people's sent mail being saved very sporadically, so I wouldn't doubt that this is a bug with mail.

  • How to increase Indent in Mail messages and save as a  default

    How can I persuade my Mail settings to accept  a larger Indent on a permanent basis.?
    I find that my Canaon printer has problems with some fonts being too near the Left hand edge of the page.

    You have to separate your step1 and step2 into two parallel loop.
    If you put the two tasks in one loop, the lower speed task will affect the loop speed.
    So that the program won't achieve the top speed.
    Is continuous acquisition required for your application? Can sequence acquisition or finite acquisition be your workaround?
    The memory handling in continuous acquisition is way a lot more difficult than finite acquisition.
    I would suggest you to figure out how finite acquisition work and then jump into the continuous acquisition application.

  • TS3276 how do I save changes in mail accounts preferences?

    how do I save changes in mail accounts preferences? I add and delete mail accounts but when I close and then reopen mail, my changes are not saved, despite messages within the mail window saying that my changes are saved.

    You can use an add-on to set the zoom level for all sites. For example, [https://addons.mozilla.org/en-US/firefox/addon/nosquint/ NoSquint] and [https://addons.mozilla.org/en-US/firefox/addon/default-fullzoom-level/ Default FullZoom Level].

Maybe you are looking for

  • HTTP Status 500 - System Unavailable error in one of the page in "APEX"

    Hi All, I copied a page from another application to my under development application (both pages are using same table and same workspace). But whenever i try to access the coped page following error comes. Other than that "Copied" page entire applica

  • Problem add CAS in CAM NAC 4.7 SSL certificate

    Hello, I have a problem with NAC 4.7, I cant add CAS in CAM, I imported the certified of www.perfigo.com and it doesnt work, i reboot the NAM and NAS and nothing. Any suggest? Best Regards

  • Parameters syntax

    Hi, I am developing the report. PARAMETERS: cmp_code LIKE zpayr-zbukr. PARAMETERS: hse_bank LIKE zpayr-hbkid. PARAMETERS: acc_id LIKE zpayr-hktid. on the screen cmp_code appears. i need to change it to compnmay code can u guide me the syntaxt to disp

  • Scan string for tokens

    Can anyone help me out on how to detect a new line using the scan string for tokens function? I am using the "\n" delimiter but it is not working  

  • Nokia 6120 Classic USB Modem is not working proper...

    Hello everybody! Something strange happened last week with my Nokia 6120 Classic (version: 03.83). I regularly use it as a USB modem and last week's Wednesday it stopped working. What the problem really is due to, is hard for me to say precisely. Usi