How can I turn off mail after turning on my mac??

Hi! I made an upgrade my mac to 10.7.1 and at start up, mail is automatically turning on. I was trying to unmark function "Open at login" but after restarting my computer it is still marked. Can somebody tell me how to set mail to not turning on all the time when I'm turing on my mac?

Managing Mac OS X Lion's application resume feature

Similar Messages

  • HT1689 +how can I shut off mail

    I would like to de activate mail temporaily, how can I do that

    Settings > Mail, Contacts, Calendars > [Your Account] > Delete Account. You can re-add it whenever you like.

  • How can I save to iCloud after turning OFF "Documents and Data"?

    I seldom store documents on iCloud, and I was tired of having iCloud be the default save location for my Numbers documents, so I went into iCloud Preferences and de-selected "Documents and Data".  That worked.  Now iCloud is no longer the default save location.
    But if I wanted to save the occasional spreadsheet on iCloud, how do I get it there without turning "Documents and Data" back on? I thought there was a way to select iCloud as an optional save location, but can't figure out how to do it.

    I think the easiest way to get around this problem is to keep a blank document in your Documents folder , the duplicate and save as needed.  The default loacation in this case is where the document is currently stored.

  • How can I turn off mail forwarding to another email address

    How can I turn off mail forwarding to another email address?

    Mail forwarding is usually a function provided by your email provider.  Visit their web site and check your setup there.

  • How to turn off mail auto fetching on iPhone 4

    Heya Guys,
    I have noticed ever since the iOS 7 update on iPhone 4 the mail options have been really temperamental.
    Before this software came about I was able to only have emails fetched when I manually went into my inbox and swiped down. Now every so often I get random mail notifications when I'm not in my mailbox & it's closed.
    I have my Email settings as the following:
    Fetch New Data: off
    Outlook: Manual
    iCloud: Manual
    Holiday Calendar: Manual
    Fetch: Manually
    But still I get them randomly every so often. Anyone know how to stop this happening? Any help would be appreciated.
    Thank you in advance.

    Very easy just turn on airplane mode then turn wifi on after turning airplane mode on! Works for me.

  • How can I get dock connector to turn off on air play. There is no longer a choice for sound to be displayed on iPad. I do not own outside speakers. Have already reset. Thanks

    How can I get dock connector to turn off on air play. There is no longer a choice for sound to be displayed on iPad. I do not own outside speakers. Have already reset. Thanks

    Slow, intermittent.  Sometimes bootable sometime not. Odd behavior.
    Sounds to me like a classic case of your HD failing.
    Your SMART status may still show verified, with no errors on the Apple Hardware Test, Disk Utility shows no problems on Disk Repair-  this is of no help.
    I trust you have a good back-up and a bootable clone.
    http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/

  • How can I stop my daughter from turning location services off from find iPhone?

    how can I stop my daughter from turning location services off from find iPhone?

    Settings > General > Restrictions
    Turn them on, go down and tap Location Services and restrict the ability to turn it off.
    Or tell her if she turns it off again you will take the phone away and get her simple flip phone.

  • How can I turn off the screen while keeping the mac awake?

    I am using teamviewer to remote connect to my office Imac from home. However, every time I connected, my imac screen will turn on and everyone else in the office can see what my imac is doing..
    Is there some method to turn off the screen while keeping the mac awake, so I can remote connect to it?
    PS: I am using OSX 10.7.3

    Energy Saver, you can keep the computer awake while the screen saver shuts the monitor off but I'm not sure that would do it for you.

  • How can I make the combo box turn to the value of black.

    When the show button is pressed (and not before), a filled black square should be
    displayed in the display area. The combo box (or drop down list) that enables the user to choose the colour of
    the displayed shape and the altering should take effect immediately.When the show button is pressed,
    the image should immediately revert to the black square, the combo box should show the value that
    correspond to the black.
    Now ,the problem is: after I pressed show button, the image is reverted to the black square,but I don't know
    how can I make the combo box turn to the value of black.
    Any help or hint?Thanks a lot!
    coding 1.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class test extends JFrame {
         private JPanel buttonPanel;
         private DrawPanel myPanel;
         private JButton showButton;
         private JComboBox colorComboBox;
    private boolean isShow;
         private int shape;
         private boolean isFill=true;
    private String colorNames[] = {"black", "blue", "cyan", "darkGray", "gray",
    "green", "lightgray", "magenta", "orange",
    "pink", "red", "white", "yellow"}; // color names list in ComboBox
    private Color colors[] = {Color.black, Color.blue, Color.cyan, Color.darkGray,
                              Color.gray, Color.green, Color.lightGray, Color.magenta,
                              Color.orange, Color.pink, Color.red, Color.white, Color.yellow};
         public test() {
         super("Draw Shapes");
         // creat custom drawing panel
    myPanel = new DrawPanel(); // instantiate a DrawPanel object
    myPanel.setBackground(Color.white);
         // set up showButton
    // register an event handler for showButton's ActionEvent
    showButton = new JButton ("show");
         showButton.addActionListener(
              // anonymous inner class to handle showButton events
         new ActionListener() {
                   // draw a black filled square shape after clicking showButton
         public void actionPerformed (ActionEvent event) {
                             // call DrawPanel method setShowStatus and pass an parameter
              // to decide if show the shape
         myPanel.setShowStatus(true);
                   isShow = myPanel.getShowStatus();
                                            shape = DrawPanel.SQUARE;
                        // call DrawPanel method setShape to indicate shape to draw
                                            myPanel.setShape(shape);
                        // call DrawPanel method setFill to indicate to draw a filled shape
                                            myPanel.setFill(true);
                        // call DrawPanel method draw
                                            myPanel.draw();
                             myPanel.setFill(true);
                             myPanel.setForeground(Color.black);
                   }// end anonymous inner class
         );// end call to addActionListener
    // set up colorComboBox
    // register event handlers for colorComboBox's ItemEvent
    colorComboBox = new JComboBox(colorNames);
    colorComboBox.setMaximumRowCount(5);
    colorComboBox.addItemListener(
         // anonymous inner class to handle colorComboBox events
         new ItemListener() {
         // select shape's color
         public void itemStateChanged(ItemEvent event) {
         if(event.getStateChange() == ItemEvent.SELECTED)
         // call DrawPanel method setForeground
         // and pass an element value of colors array
         myPanel.setForeground(colors[colorComboBox.getSelectedIndex()]);
    myPanel.draw();
    }// end anonymous inner class
    ); // end call to addItemListener
    // set up panel containing buttons
         buttonPanel = new JPanel();
    buttonPanel.setLayout(new GridLayout(4, 1, 0, 50));
         buttonPanel.add(showButton);
    buttonPanel.add(colorComboBox);
    JPanel radioButtonPanel = new JPanel();
    radioButtonPanel.setLayout(new GridLayout(2, 1, 0, 20));
    Container container = getContentPane();
    container.setLayout(new BorderLayout(10,10));
    container.add(myPanel, BorderLayout.CENTER);
         container.add(buttonPanel, BorderLayout.EAST);
    setSize(500, 400);
         setVisible(true);
         public static void main(String args[]) {
         test application = new test();
         application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    coding 2
    import java.awt.*;
    import javax.swing.*;
    public class DrawPanel extends JPanel {
         public final static int CIRCLE = 1, SQUARE = 2;
         private int shape;
         private boolean fill;
         private boolean showStatus;
    private int shapeSize = 100;
    private Color foreground;
         // draw a specified shape
    public void paintComponent (Graphics g){
              super.paintComponent(g);
              // find center
    int x=(getSize().width-shapeSize)/2;
              int y=(getSize().height-shapeSize)/2;
              if (shape == CIRCLE) {
         if (fill == true){
         g.setColor(foreground);
              g.fillOval(x, y, shapeSize, shapeSize);
    else{
                   g.setColor(foreground);
    g.drawOval(x, y, shapeSize, shapeSize);
              else if (shape == SQUARE){
         if (fill == true){
         g.setColor(foreground);
                        g.fillRect(x, y, shapeSize, shapeSize);
    else{
                        g.setColor(foreground);
    g.drawRect(x, y, shapeSize, shapeSize);
    // set showStatus value
    public void setShowStatus (boolean s) {
              showStatus = s;
         // return showstatus value
    public boolean getShowStatus () {
              return showStatus;
         // set fill value
    public void setFill(boolean isFill) {
              fill = isFill;
         // set shape value
    public void setShape(int shapeToDraw) {
              shape = shapeToDraw;
    // set shapeSize value
    public void setShapeSize(int newShapeSize) {
              shapeSize = newShapeSize;
    // set foreground value
    public void setForeground(Color newColor) {
              foreground = newColor;
         // repaint DrawPanel
    public void draw (){
              if(showStatus == true)
              repaint();

    Hello,
    does setSelectedIndex(int anIndex)
    do what you need?
    See Java Doc for JComboBox.

  • HT5527 I did not move my Mobileme account to iCloud. How can I get off the iCloud mailing list?

    I did not move my Mobileme account to iCloud. How can I get off the iCloud mailing list?

    If you migrated your MobileMe account before 1 August you should have signed into System Preferences>iCloud with it, and you would be able to see your calendars, bookmarks and emails on the iCloud website. Is this the case? Did you sign into iCloud with your @me.com address?
    If you did not migrate your MobileMe account you can no longer do so.
    If you did migrate, did you do so from a full MobileMe account or from a Family Pack sub-account? the latter did not get the complimentary storage (because their iDisks were only 5GB anyway).
    If you had a full MobileMe account, check on your Mac - System Preferences>iCloud - and see whether that shows the upgrade. If it doesn't, you probably need to contact Support: if you currently happen to have AppleCare, either because you recently bought Apple hardware or have paid to extend the inititial period, you can contact them here:
    http://www.apple.com/support/icloud/contact/
    You will need the serial number of the covered hardware.
    If you are not covered by AppleCare, then - in common with other free email services - there is no free support (MobileMe Support is no longer available) and you may be asked to pay a fee: in this case you should ask them to deal with it without cost (and hope they agree).
    Note that you haven't paid anything for your MobileMe storage since your first renewal date after 6 June 2011, and iCloud costs nothing unless you specifically choose to upgrade the storage. Note also the iCloud storage is not general file storage in the manner of the iDisk but is restricted to iOS device Backup, Mail, Photo Journal and Documents.

  • AppleScript to turn off Bluetooth after an hour of no usage

    I'm interested in making an AppleScript that will turn off Bluetooth after a bluetooth device is not used for (let's say) one hour. The script should run only on battery life, not when the computer is plugged in.
    Any ideas on how to start? Thanks.

    I don't think there's any way (at least easy way) to do this.
    AppleScript is very good at initiating events, but not good at responding to them. As such it's not easy to write a script in this manner. About the only way to do this would be to have a stay-open script that periodically checks the list of connected devices and keeps track of when the last bluetooth device was used - however, there's a big difference between being 'used' and being 'connected'... you may have a bluetooth headset 'connected', but if you're not running any audio apps it might not be used, and that's hard to AppleScript to determine.

  • My iPhone 4 turns off (crashes) after accesing any apps, It work fine when plugged to charger. I tried all troubleshooting steps suggested by Apple but it doesn't work. What could be the problem and what are the solutions?

    My iPhone 4 turns off (crashes) after accesing any apps, It work fine when plugged to charger (power supply). I tried all troubleshooting steps suggested by Apple but it doesn't work. I backed up my phone. I restored it several times. Even I re-installed iphone software. Also I restored it as a new iphone but doesn't work. What could be the problem and what are the availble solutions?

    We can't know if there's a "fixture" because we can't examine your phone.  But Apple can.  Make a Genius Bar appointment and get your phone evaluated.

  • My iphone 4 turns off automatically after screen lock

    Hello guys,
    my iphone 4 turns off automatically after screen lock, i have to press the POWER + HOME button during 10 secondes for reboot.
    And it's like that every time i lock the screen.
    Please can someone help me ?
    thanks.

    Standard troubleshooting steps are reset, restore, restore as new.
    Since resetting isn't working, try backing up and restoring through iTunes.

  • HT5429 How do I turn on or turn off my voice turn by turn directions. I seem to have turned it off and don't know how to get back on.

    How do I turn on or turn off my voice turn by turn directions. I seem to have turned it off, but can't find a way to turn it back on. I have checked the volume levels and that my phone is not on silent.
    Thanks for any help!

    You must activate the iPad within iTunes on your computer. Make sure you have the latest version of iTunes on your computer (read the minimum requirements for the iPad printed on the iPad box) and connect the iPad to your computer with the supplied cable to a 2.0 USB port - not a port on a hub- a port on your computer. iTunes should start and take you through the process.
    iTunes on the iPad is a store where you purchase media - it is not the music player. The iPod app is the music player. Both apps are pre installed on the iPad.

  • How screen turn off timeout, hdds turn off confg

    how screen turn off timeout, hdds turn off configured in 10.7.4 Lion?

    Go into your Applications folder, then into "System Preferences", then into "Energy Saver". You can set them there.
    Hope this helps

Maybe you are looking for

  • How do I create an ANIMATED GIF for my Website Logo?

    Hi, I would like to make a turning logo for my website. The problem is that I don't know which software to use and how. Is there an Adobe program which is easy for creating an Animated GIF or equivalent moving logo... You can see my static logo here:

  • Transfer app purchases between accounts

    Hi all, Is it possible to transfer app purchases between two different accounts? I trashed my old account as my iPhone was stolen. Recreate the account with the exact same information. Unfortunately I cannot update my apps as it says that I'm on a di

  • Writing waveforms from Ch. 0 of niSCOPE to binary file in a multi-record setup?

    Hello, I am not very experienced with niSCOPE and writing waveform records, so I need some expert help here. Here is my application: I am generating a pulse train using a 6602 counter/timer. Each rising edge of this pulse train triggers an niFGEN to

  • PJC and database access through JDBC

    Hello, I'm trying to access to the database through a PJC via JDBC. conn = DriverManager.getConnection ("jdbc:oracle:thin:@machine:1521:XE", "user", "pwd");It works fine on a XE database, but fails on another XE one: Oracle JInitiator: Version 1.3.1.

  • High performance website, best practices?

    Hello all, I'm working on a system with a web service/Hibernate (Java code linking web pages to the database) front-end which is expected to process up to 12,000 transactions per second with zero downtime. We're at the development/demonstration stage