How do you store "sent" mail locally and on the server?

Hello. This is a slightly lengthy...but hopefully someone can help!
I am using the Mail program in Tiger (Mac OS X 10.4.3) with an IMAP account. I am wondering how you set up the preferences so that the e-mails that you send (outgoing) are stored locally on my computer and also on the server (so that I can .
So far I have tried checking and unchecking the option to 'store mail on the server' (in the 'Mailbox Behavior' window of the Preference Box). When I uncheck the box, the sent mail is stored ONLY locally on my computer.
When I check the box so that the mail is stored on the server, I cannot view any copies of the sent mail on my computer, nor can I view the sent mail through my other school account (same account b/c it's IMAP).
My IMAP account is setup with my school, so I have a folder called 'Sent' that I have programmed so that copies of my sent mail are stored there (viewable locally on any computer that I log-in to). I formerly user Thunderbird (with Mozilla) and it allowed me to save sent mail into that same folder, but I am unable to do so with Mail in the Tiger program.
I hope this is understandable...anyone able to shed some light on this issue? Thanks!
PowerBook G4   Mac OS X (10.4.3)  

Hi tanjo,
This is a bit of a workaround, but you could set
mail.app to automatically blind copy to yourself any
messages you originate (and then use a rule to
automatically file these messages in a "sent" folder
of your choice).
A method to do setup this default bcc is on
MacOSXhints.com, in this article: Permanently add Reply To headers in
Mail.app. It references this command line:
defaults write com.apple.mail
UserHeaders '{"Bcc" = "[email protected]";
best of luck,
...ben
PB G4 15 1.67 GHz,
iBook SE 0.47 GHz   Mac OS X (10.4.3)  
Hi Ben,
Thank you very much for the tip. I'm going to give that a try. Happy Holidays!
--tanjo

Similar Messages

  • How do you print an email attachment and not the email itself. please.

    how do you print an email attachment and not the email itself.  please.
    This question was solved.
    View Solution.

    Hi there, if there is text in the body of the email it will print automatically when sent to an ePrint email address. The only way to just have the attachment print is for there to be no text in the email body.
    Hope that helps answer your question.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • How do you move a single album, and not the whole library, in iPhoto to an external hard drive?

    How do you move a single album, and not the whole library, in iPhoto to an external hard drive?

    File -> Export to a folder and copy it over.
    That will give you a folder with the images. There is no way to move an album outside of iPhoto. You would need to have a library containing it.
    Regards
    TD

  • How do you 'mark all' mail messages and then delete in Iphone 5?

    I cannot do a mass delete of my emails any more in iphone 5 - how do you get the edit functions back onto the screen once you have 'marked all' the messages?

    As Chgrist1 said, that is how it works. Having looked as how Outlook stores mail, and everything else. It is a wonder anything ever comes out that is useable. PST files are a mess. First thing they do is pull the email apart and store header, body and attachments is three different places.
    You will also find (most likely) that your accounts in Outlook were POP and the default in Thunderbird is IMAP. merging IMAP and POP files and folders is fraught with difficulties and dangers. It would be a brave developer that tried that in an import.
    In the case of IMAP all your mail is one the server, so import is not all that important. However copying a gigabyte or two of of outlook mail into your imap server could exhaust your available message storage space there and cause the import to fail completely.
    So If you want to do what your saying, first confirm that your not using IMAP mail. Otherwise your experience is most likely going to be exceedingly poor.
    If you are using POP mail, then changing the setting in your pop account to cause it to use the global inbox will make a single mail account appear, "Local Folder", with your outlook mail as a sub folder of that.
    Dragging a folder from the imported outlook tree to Local folders is not difficult, as long as you remember that folders hang of other folders, so your dragging them to a parent, not a position on the screen you like.

  • If you have 2 apple ids, how do you sign out of one and into the other so you can update the app that was purchased in the other account.  thanks

    If you purchased an app in one account and work mostly in another, how do you switch the purchased app account to update it?
    thanks

    You need to sign out and back in only if you're on your Mac and you want to update the iTunes data.  You'll see a notice saying that there are five (or so) updates but when you go to download them, they're not all present.  So you download them, sign out from one ID and sign back in with the other ID.  Then you can download the remaining ones.
    If you're downloading directly to the iPad, everything is transparent.  It does not matter what ID is configured in Settings.  The iPad automatically chooses the correct ID or IDs when updates are available.

  • How do you monitor a background thread and update the GUI

    Hello,
    I have a thread which makes its output available on PipedInputStreams. I should like to have other threads monitor the input streams and update a JTextArea embedded in a JScrollPane using the append() method.
    According to the Swing tutorial, the JTextArea must be updated on the Event Dispatch Thread. When I use SwingUtilities.invokeLater () to run my monitor threads, the component is not redrawn until the thread exits, so you don't see the progression. If I add a paint () method, the output is choppy and the scrollbar doesn't appear until the thread exits.
    Ironically, if I create and start new threads instead of using invokeLater(), I get the desired result.
    What is the correct architecture to accomplish my goal without violating Swing rules?
    Thanks,
    Brad
    Code follows:
    import java.lang.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    import java.awt.event.*;
    public class SystemCommand implements Runnable
         private String[] command;
         private PipedOutputStream pipeout;
         private PipedOutputStream pipeerr;
         public SystemCommand ( String[] cmd )
              command = cmd;
              pipeout = null;
              pipeerr = null;
         public void run ()
              exec ();
         public void exec ()
              // --- Local class to redirect the process input stream to a piped output stream
              class OutputMonitor implements Runnable
                   InputStream is;
                   PipedOutputStream pout;
                   public OutputMonitor ( InputStream i, PipedOutputStream p )
                        is = i;
                        pout = p;
                   public void run ()
                        try
                             int inputChar;
                             for ( ;; )
                                  inputChar = is.read();
                                  if ( inputChar == -1 ) { break; }
                                  if ( pout == null )
                                       System.out.write ( inputChar );
                                  else
                                       pout.write ( inputChar );
                             if ( pout != null )
                                  pout.flush ();
                                  pout.close ();
                             else
                                  System.out.flush();
                        catch ( Exception e ) { e.printStackTrace (); }     
              try
                   Runtime r = Runtime.getRuntime ();
                   Process p = r.exec ( command );
                   OutputMonitor out = new OutputMonitor ( p.getInputStream (), pipeout );
                   OutputMonitor err = new OutputMonitor ( p.getErrorStream (), pipeerr );
                   Thread t1 = new Thread ( out );
                   Thread t2 = new Thread ( err );
                   t1.start ();
                   t2.start ();
                   //p.waitFor ();
              catch ( Exception e ) { e.printStackTrace (); }
         public PipedInputStream getInputStream () throws IOException
              pipeout = new PipedOutputStream ();
              return new PipedInputStream ( pipeout );
         public PipedInputStream getErrorStream () throws IOException
              pipeerr = new PipedOutputStream ();
              return new PipedInputStream ( pipeerr );
         public void execInThread ()
              Thread t = new Thread ( this );
              t.start ();
         public static JPanel getContentPane ( JTextArea ta )
              JPanel p = new JPanel ( new BorderLayout () );
              JPanel bottom = new JPanel ( new FlowLayout () );
              JButton button = new JButton ( "Exit" );
              button.addActionListener ( new ActionListener ( )
                                       public void actionPerformed ( ActionEvent e )
                                            System.exit ( 0 );
              bottom.add ( button );
              p.add ( new JScrollPane ( ta ), BorderLayout.CENTER );
              p.add ( bottom, BorderLayout.SOUTH );
              p.setPreferredSize ( new Dimension ( 640,480 ) );
              return p;
         public static void main ( String[] argv )
              // --- Local class to run on the event dispatch thread to update the Swing GUI
              class GuiUpdate implements Runnable
                   private PipedInputStream pin;
                   private PipedInputStream perr;
                   private JTextArea outputArea;
                   GuiUpdate ( JTextArea textArea, PipedInputStream in )
                        pin = in;
                        outputArea = textArea;
                   public void run ()
                        try
                             // --- Reads whole file before displaying...takes too long
                             //outputArea.read ( new InputStreamReader ( pin ), null );
                             BufferedReader r = new BufferedReader ( new InputStreamReader ( pin ) );
                             String line;
                             for ( ;; )
                                  line = r.readLine ();
                                  if ( line == null ) { break; }
                                  outputArea.append ( line + "\n" );
                                  // outputArea.paint ( outputArea.getGraphics());
                        catch ( Exception e ) { e.printStackTrace (); }
              // --- Create and realize the GUI
              JFrame f = new JFrame ( "Output Capture" );
              f.setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );
              JTextArea textOutput = new JTextArea ();
              f.getContentPane().add ( getContentPane ( textOutput ) );
              f.pack();
              f.show ();
              // --- Start the command and capture the output in the scrollable text area
              try
                   // --- Create the command and setup the pipes
                   SystemCommand s = new SystemCommand ( argv );
                   PipedInputStream stdout_pipe = s.getInputStream ();
                   PipedInputStream stderr_pipe = s.getErrorStream ();
                   // --- Launch
                   s.execInThread ( );
                   //s.exec ();
                   // --- Watch the results
                   SwingUtilities.invokeLater ( new GuiUpdate ( textOutput, stdout_pipe ) );
                   SwingUtilities.invokeLater ( new GuiUpdate ( textOutput, stderr_pipe ) );
                   //Thread t1 = new Thread ( new GuiUpdate ( textOutput, stdout_pipe ) );
                   //Thread t2 = new Thread ( new GuiUpdate ( textOutput, stderr_pipe ) );
                   //t1.start ();
                   //t2.start ();
              catch ( Exception e ) { e.printStackTrace (); }
              

    Thanks for pointing out the SwingWorker class. I didn't use it directly, but the documentation gave me some ideas that helped.
    Instead of using invokeLater on the long-running pipe-reader object, I run it on a normal thread and let it consume the output from the background thread that is running the system command. Inside the reader thread I create a tiny Runnable object for each line that is read from the pipe, and queue that object with invokeLater (), then yield() the reader thread.
    Seems like a lot of runnable objects, but it works ok.

  • TS3276 Yahoo! sent mail not updated in the server.

    I have an issue with Yahoo! Mail. When I'd sent email from my Mail from my mac book air, it can be sent but a copy is not updated in the server, thus when I view from the web or other device I can't see it as it is not updated. I've checked the "store sent msg in server" in the mail preference.
    I don't this issue with exchange and gmail.
    Thanks

    Right that is how the  POP email protocol works. If you want all mail sent and received to always be on the Mail Server then you have to use a mail provider that allows, uses, either IMAP or MS Exchange.

  • How do you configure a client to update from the server

    I found the information on how to point clients to a software update server but the problem I have is the URL.
    The example is http://su.example.com:8088/index.sucatalog
    I don't have a URL as far as I know and if I did, is the default port 8088 or where can I change or check that?
    And where is a list of the catalog file for the specific versions of OS X?
    Basically I have 8 Macs all running Yosemite except for one running 10.8.5. Instead of all the machines hitting the internet for updates, I'd like just my server to down the updates and then all clients update from the server.
    If there is better instructions on how to do this, please point the way.
    TIA
    Chris

    John Lockwood wrote:
    This does mean you need to buy a DNS load balancer to do this. The Mac itself cannot.
    FWIW, OS X Server is capable of performing round-robin access with the inbound traffic using multiple IP addresses for a single host name.  The addresses are each of the software update servers in your server pool.
    This'll toss errors for some translations when one of the servers is down — you can tweak the definition if one of the servers is going to be offline for a while — but some of the updates will get through.
    Set the DNS TTL fairly short — probably somewhere between a few minutes and an hour — to allow the DNS translations to be changed fairly quickly, if your software update servers are prone to outages.

  • Difference between compiling locally and on the server with FDS

    Hi,
    I am doing soming very basic testing with remote Java objects
    and I am finding that if I create a FDS project and compile on the
    server the code runs, if I create a FDS project and compile locally
    it gives me the following error :
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Failed"]
    what gives?
    The compiler in Flex Builder string is :
    -services "C:\Archivos de programa\Apache Software
    Foundation\Tomcat
    5.5\webapps\flex\WEB-INF\flex\services-config.xml" -locale en_US
    Any insights?
    David

    Hi,
    I am also facing an issue regarding compiling mxml using
    remote objects using flex sdk. The error I am getting is
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Security.Error error Error #2048: Security
    sandbox violation:
    http://localhost:9080/iReports/flexFiles/mxml/AdminServices.swf
    cannot load data from
    http://localhost:9080iReports/messagebroker/amf."
    Can u help me?
    Thanks,
    Cheree

  • HT1430 how do you unlock an IPod touch and reset the password

    My daughter has reset her password and now cant remeber it! can anyone tell me in simple terms how to reset please?
    Thanks

    Connect the iOS device to your computer and restore via iTunes. Place the iOS device in Recovery Mode if necessary to allow the restore.
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • In making a monthly budget how do you repeat for next month and update the dates to the next month?

    i want to make my budget speadsheet update the month and date as it goes to the next month automatically, from sheet to sheet.  is there any way to make this happen?

    You could have a cell where you enter the month and year...
    Or you could pull the month and year from the first entry in the date column.  Like Barry I would want more information regarding your  set up before proposing any other, more specific, ideas.

  • HT4191 iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.

    iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.  I've seen reference to the  "My iPhone" local storage put no mention on how you create this folder or access this folder within the Notes app.  I realize storing information in a local storage like this provides no syncing between other iDevices but that is exactly what I'm looking for.  I'm running iOS7.0.4 on a iPhone 5S, and a iPad Air.  Any help would be greatly appreciated.

    If you go to Settings > Notes > Default Account you will see "On My iPhone" as the default account and the only choice if you have not enabled syncing Notes in Settings >iCloud or Settings > Mail, Contacts, Calendars. If you have enabled syncing you can still select "On My iPhone" as the default account. When you are in the Notes app you won't see any accounts listed if you have not enabled syncing because they are all in the On My iPhone account and that is the only place possible. It is not a folder that you create.

  • How do you view sent and/or trash mail

    How do you view sent and /or trash mail on your laptop.

    depending on the mail-client used. 'mail sent' or 'trash' folders ... available on Outlook or Mail ...

  • When you expand to show local and remote sites, in DW CS6 how do I get the local to be on the left?

    When you expand to show local and remote sites, in the previous verions of DW, the files type (local or remote) selected when not seeing both, automatically came up on the left.  I liked local when I am editing and when I am ready to upload I expand to see both local in remote.  Before, the one you had selected, in my case local, was always displayed on the left.  Now in CS6 when I have local selected before I expand, the local is on the right and remote on the left. For me that is not correct.  I find that having local on the left works best for me like reading, left to right, I want the local on the LEFT so I can put the updated from left to the remote on the right. 
    -->In DW CS6 how do I get the local to be on the left?

    Thank you so much!  That did it! 

  • Can you get sent mail to be saved in the folder of original message?

    Anyone know if this is possible in mac mail? if not how do i request a new feature, can't seem to find that on the support site either.

    I am not sure why you would ever want to do this? Mail provides a Reply indicator from which to see any reply, and furthermore via either Rules or Smart Mailboxes can provide to either move or view messages in various On My Mac mailboxes and/or groupings.
    The short answer is no, if you mean in the original Inbox, since Mail in EACH account provides separate xxxx.mbox folders (mailboxes) for Inbox, Sent, Trash, Drafts, Junk, and communicates in particular with the Sent mailbox to store messages you have sent, but not until AFTER the SMTP has communicated the Message ID# that has been assigned the message you sent.
    You can certainly move both messages and received into other mailboxes that you create (with POP accounts, these will be On My Mac, with IMAP accounts can be folders on a server) to associate them. I do this routinely with a few subject/relationship areas.
    Ernie

Maybe you are looking for

  • Cb867A HP Officejet 4500 will not connect to network

    I have tried over and over to connect my cb867A HP Officejet 4500 wireless printer, and it will not work.  I have changed cables, triple checked everything, uninstalled and re-installed software, and I cannot get this printer to work as a wireless pr

  • PS problems

    Tenho o Photoshop CS3. Quando vou abrir ou salvar algum arquivo, o PS abre a janela de "abrir arquivo" ou "salvar como" e trava. Meu SO é Win XP Home Edition. É problema com o Windows? Já reinstalei o PS I have Photoshop CS3. When I open or save a fi

  • How to updata data from SAP EP into SAP R/3 ?

    Hi, How to create the material from SAP CE 7.1 into SAP R/3. Is BAPI  the only way for this or there is some other solution. Also, please explain how to use BAPI in this scenario. Regards, Yogita.

  • MR21+COMPUTE_BCD_OVERFLOW

    Hi We are encountering a dump due to the exception COMPUTE_BCD_OVERFLOW in MR21 during the Price Change.When debugged MR21>>Function Module PRICES_CHANGE>>Function module MR_POSITING_GENERATE>>Sub routin OIA_CALC_LOG_INV>> G_LIVAL = I_SGNBU-NPREI * O

  • Lightroom catalog together with network

    Hello, i have a home network with Lightroom on my base computer. The Lightroom catalog is also stored here. The pictures are on a central server, connected to the network. This works fine. But: i want to use a second computer in another room with Lig