Cannot use php mail() function in leopard's localhost

<?php
$to = "[email protected]";
$subject = "test subject";
$message = "test message";
$from = "[email protected]";
$headers = "From: $from";
mail($to, $subject, $message, $headers)
?>
This code doesn't work on my localhost but when I uploaded it to my sever it run normaly. Then how can I use the mail function on my localhost to test it before I need to publish it to my server

Have you started the mail server on your machine?
By default PHP will try to use the local mail server to send the message. If you haven't started Postfix the message will go nowhere.

Similar Messages

  • PHP mail() function not working

    Hello, I am having a problem sending mail with php while hosting my own website with apache on my mac. First of all I would like to note that I do not have a large background with web hosting and php. Everything that I did so far was just suggestions from online articles and other forums, so please include detail with any answers.
    I have apache started, and my website hosted just fine. I can also view php pages so I know php is running too. My problem is using the php mail() function.
    I have a simple form in my site who's action attribute is set to results.php. In the results.php file I have the mail() function (along with html code displaying "thank you...blah blah blah") sending info from the form to my email address. I never get an error on the php side, but my mail never gets sent.
    Is there some type of setting in a config file that need to be turned on or changed?
    Here is what I have done/modified so far from my research from online articles. i dont know what some of them mean, but followed the steps correctly:
    Edited the /etc/hostconfig file and added the line MAILSERVER=-YES-
    Edited the /etc/postfix/main.cf file and uncommented the #myhostname = ...line and made it "myhostname = localhost" (without quotes)
    Edited the php.ini file to the following - The line under where it says
    ; For unix only. You may supply arguments as well (default: "sendmail -t -i")
    Sendmail_path = usr/sbin/sendmail -t -i
    I opened the mail.log file and here are some entries from the other day:
    Code:
    Jul 9 08:16:50 new-host postfix/master[689]: daemon started -- version 2.4.3, configuration /etc/postfix
    Jul 9 08:16:50 new-host postfix/qmgr[691]: 4B4DC2E8331: from=<[email protected]>, size=323, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/qmgr[691]: 7A8242EE3C0: from=<[email protected]>, size=280, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/qmgr[691]: B1C052EE3C4: from=<[email protected]>, size=280, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/qmgr[691]: C281C2EE3C5: from=<[email protected]>, size=327, nrcpt=1 (queue active)
    Jul 9 08:16:50 new-host postfix/smtp[694]: 4B4DC2E8331: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=213262, delays=213261/0.05/0.86/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:16:51 new-host postfix/pickup[690]: 0F5D22EE4DB: uid=70 from=<_www>
    Jul 9 08:16:51 new-host postfix/cleanup[692]: 0F5D22EE4DB: message-id=<20100709121651.0F5D22EE4DB@localhost>
    Jul 9 08:16:51 new-host postfix/qmgr[691]: 0F5D22EE4DB: from=<[email protected]>, size=333, nrcpt=1 (queue active)
    Jul 9 08:16:51 new-host postfix/smtp[695]: 7A8242EE3C0: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=27074, delays=27073/0.02/1.1/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:16:51 new-host postfix/smtp[697]: C281C2EE3C5: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=26817, delays=26816/0.02/1.1/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:16:51 new-host postfix/smtp[696]: B1C052EE3C4: to=<[email protected]>, relay=relay.verizon.net[206.46.232.11]:25, delay=27174, delays=27173/0.01/1.1/0, dsn=4.0.0, status=deferred (host relay.verizon.net[206.46.232.11] refused to talk to me: 571 Email from 74.102.108.224 is currently blocked by Verizon Online's anti-spam system. The email sender or Email Service Provider may visit http://www.verizon.net/whitelist and request removal of the block. 100709)
    Jul 9 08:17:23 new-host postfix/smtp[694]: connect to mx1.comcast.net[76.96.62.116]: Operation timed out (port 25)
    Jul 9 08:17:50 new-host postfix/master[689]: master exit time has arrived
    Any other suggestions on how to get this to work? I have also created a simple php file that sends mail without retreiving info from a form and also tried using several different email addresses to send to and from, but still nothing

    Edited the /etc/postfix/main.cf file and uncommented the #myhostname = ...line and made it "myhostname = localhost" (without quotes) Change that to mail.yourispname.com Then run sudo postfix reload and see if it sends mail. The reason being, is that you don't have a fully qualified domain name.
    And make that reflective in your mail() function file/template.
    Message was edited by: doug pennington

  • ANN: Tutorial on using PHP mail() safely

    Time and time again, I see requests for help with PHP mail() scripts that use a very common, but insecure technique: inserting an unfiltered email address into the From header.
    There are two things wrong with this:
    The From header is meant to indicate where the email originates. When using the mail() function, it's your website that originates the message, not whoever submits the form. To reply to the person submitting the form, you should use the Reply-to header.
    You should NEVER put unfiltered user input into the header argument of the mail() function.
    I have created a tutorial explaining how to remain safe by using the PHP filter_input() function to check the validity of an email field before creating a Reply-to header. It's on my website at http://foundationphp.com/tutorials/email.php.

    Thanks, CF. I've been teaching how to avoid email header injection in my books for years, but I've noticed so many people still using insecure code that I decided it was time for an online tutorial.

  • Just installed a HP Color Laserjet CM2320nf MFP printer, at the same time I upgraded to Lion. It prints fine, but I cannot use the scan functions.  I downloaded the most recent driver! Any help would be appreciated.

    Just installed a HP Color Laserjet CM2320nf MFP printer, at the same time I upgraded to Lion. It prints fine, but I cannot use the scan functions.  I downloaded the most recent driver! Any help would be appreciated.

    HP says that the drivers for your all in one print/scanner are downloadable from apple. For the scanner to use preview. image capture or the scan icon from the print driver queue.  I don't know how old your HP is, but I know that the newer Os from apple don't support a lot of older printers. You might be able find a third party driver that could work.

  • Using PHP mail

    I am trying to send an email with php.  Here is my simple code:
    $to = $email;    $subject = "subject";    $message = "message";    $header = "From:[email protected] \r\n";    $success= mail ($to,$subject,$message,$header);    if( $success== true )     {       echo "Message sent";    }    else    {       echo "Message not sent.";    } 
    I get the success message, but I never receive the e-mail.  Why don't I get the e-mail?

    Have you sent the message from a system that has a mail server running?
    The PHP mail() function usually sends via a local mail server, typically fronted by a sendmail binary on Linux, BSD and OS X platforms, however, Windows usually doesn't include a local mail server; PHPMailer's integrated SMTP implementation allows email sending on Windows platforms without a local mail server.
    Have a look here for more info PHPMailer/PHPMailer · GitHub

  • I have just purchased Real player 15sp but it does not seem to recognise Firefox13? and I cannot use the extra functions that it has. Example I cannot download

    I have just purchased Real player 15sp but it does not seem to recognise Firefox13? and I cannot use the extra functions that it has. Example I cannot download videos. Thank you.
    Jack

    Cannot download videos
    This is caused by the RealPlayer Browser Record Plugin extension. To fix it, disable the extension.
    The RealPlayer plugin will still work.
    At the top of the Firefox window, click on the Firefox button (Tools menu in Windows XP), and then click Add-ons. The Add-ons Manager tab will open.
    In the Add-ons Manager tab, select the Extensions panel.
    Select RealPlayer Browser Record Plugin.
    Click on Disable.
    Click Restart Now to start Firefox with the extension disabled. My add-on manager says the add-on is disabled.
    I tried this and it didn't work, what else?

  • Cannot use jdk 6 function when using a blackberry project...

    I use Eclipse 3.4.2 to build my Blackberry project. I create a blackberry project...So inside, I have the "net rim" blackberry library, and inside this library I have a bunch of jdk function...like java.lang, or java.io...
    Before installing Eclipse, I have installed JDK 6 to work with and I'm actually trying to use those library.
    When I include JDK libraries in my blackberry project, I can import everything from the JDK, BUT I cannot use any class imported with the "import" tag...
    NOTE: net_rim_api.jar contains "java.lang.String" and JDK 6 also. I want to use the split() and substring() function inside the String class contained inside JDK 6, but it seems that eclipse only see the String class contained inside net_rim_api.jar...
    My question is:
    Why can I import my jdk objects, and can't I use the class corresponding to them?
    If I create a projet a standard Java Project, and I include my blackberry library it pop me an error...
    java.lang.ClassFormatError: Method <init> in class net/rim/device/api/ui/UiApplication has illegal modifiers: 0x104
        at java.lang.ClassLoader.defineClass1(Native Method)
        at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
        at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
        at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
        at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
        at java.lang.ClassLoader.defineClass1(Native Method)
        at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
        at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
        at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
        at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Exception in thread "main"
    Here's my code:
    import java.io.IOException;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.Screen;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.RichTextField;
    import net.rim.device.api.ui.component.BasicEditField;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.component.ObjectListField;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import java.lang.String;
    public class InfoModem extends UiApplication {
    // Déclaration des propriétés
    public static boolean dev = true;
    public static String strHost = null;
    public static String[] n_client = {"80000001","80000002","80000003"};
    public static void main(String[] args) {
    // Definition du host
    if (dev){
    strHost = "http://devshed.labaie.vdl";
    } else {
    strHost = "https://intranet.derytelecom.ca";
    InfoModem modem = new InfoModem();
    modem.enterEventDispatcher();
    public InfoModem()
    UiApplication uiApp = UiApplication.getUiApplication();
    uiApp.pushScreen(UserInterface());
    public Screen UserInterface()
    //Instance de l'écran principale de l'interface
    final MainScreen screen = new MainScreen();
    //Déclaration des FieldManager
    VerticalFieldManager fieldManagerTop = new VerticalFieldManager();
    HorizontalFieldManager fieldManagerButton = new HorizontalFieldManager();;
    //Instanciation des objets de l'interface
    RichTextField Title = new RichTextField("Interrogation de modem");
    RichTextField lblNumeroModem = new RichTextField("Inscrire le numéro du modem");
    final BasicEditField txtModem = new BasicEditField();
    final RichTextField lblResultat = new RichTextField();
    ButtonField btnRechercher = new ButtonField("Rechercher");
    // Listener du bouton Rechercher
    FieldChangeListener listener = new FieldChangeListener() {
    public void fieldChanged(Field field, int context)
    Http.strUrl = strHost + "/php-bin/blackberry/test.php?action=search&n_client=80000001";
    try {
    Http.GetRequest(Http.strUrl);
    } catch (IOException e) {
    e.printStackTrace();
    if (Http.strHttpData != null)
    final String data = Http.strHttpData;
    System.out.println(data);
    final ObjectListField liste = new ObjectListField()
    protected boolean navigationClick(int status, int time)
    lblResultat.setText(n_client[this.getSelectedIndex()]);
    return true;
    liste.set(n_client);
    screen.add(liste);
    //Assignation du listener au bouton Rechercher
    btnRechercher.setChangeListener(listener);
    //Ajout du titre de la page
    screen.setTitle(Title);
    //Ajout des Fields dans le FieldManager
    fieldManagerTop.add(lblNumeroModem);
    fieldManagerTop.add(new SeparatorField());
    fieldManagerTop.add(txtModem);
    fieldManagerTop.add(new SeparatorField());
    fieldManagerTop.add(lblResultat);
    fieldManagerButton.add(btnRechercher);
    //Chargement des FieldManager sur l'écran
    screen.add(fieldManagerTop);
    screen.add(fieldManagerButton);
    return screen;
    All I want is to use java.lang.String with its split() and substring() function which are not inside the blackberry java.lang.String library...
    any idea?

    The function module has only one input parameter, which should be a string with length less than 256. (I tried many predefined data element like RPLM_STRING, but when I tried to add the function module as a method of BAPI, the SAP always gave me the error: data type xxxxx cannot be used for methods)
    It only has one output parameter: RETURN (associated type: BAPIRETURN)
    I am really not familiar with ABAP program, let alone BAPIs. Any suggestions would be very helpful to me. I sincerely appreciate your help.
    Bing

  • 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 use Php a function in an insert transaction ?

    Hi,
    I want to insert a computed data (string) based on a date (dd-mm-aaaa hh:mm:ss).
    The result must be AAAAMM Year+month without spaces.
    So i tried this :
    $ins_agenda->addColumn("aaaa_mm", "string", "POST", "date({date_debut_effective},'Ym')");
    But it failed.
    Is it possible to use Php fonction with an appropriated syntax ?
    Thanks for your help. JM.

    I get this :
    tNG_fields.getColumnValue:
    Column date_debut_effective is not part of the current transaction
    In fact, date_debut_effective is the form field name, deb_eve is the database field name (transaction name).
    aaaa_mm is another database field in the same table, same transaction.
    aaaa_mm should only be computed with deb_eve data.
    When I use deb_eve as transaction field name in the trigger, the targeted database field (aaaa_mm) remain empty after the insert.
    The logic should like this :
    Form field (format datetime)
    -> database X field deb_eve (same format datetime)
    -> computed database X field aaaa_mm (format aaaamm or Ym)
    I use this : $ins_agenda_previsionnel->addColumn("aaaa_mm", "STRING_TYPE", "CURRVAL", ""); to fill aaaa_mm field.
    My code :
    before trigger
    // date de début effective vers date aaaamm
    function Trigger_Custom_aaaamm(&$tNG) {
    $date_field = $tNG->getColumnValue(deb_eve);
    $tNG->setColumnValue("aaaa_mm", date($date_field,'Ym') );
    insert transaction
    // Make an insert transaction instance
    $ins_agenda_previsionnel = new tNG_insert($conn_cnxWarh);
    $tNGs->addTransaction($ins_agenda_previsionnel);
    // Register triggers
    $ins_agenda_previsionnel->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "");
    $ins_agenda_previsionnel->registerTrigger("BEFORE", "Trigger_Custom_aaaamm", 98);
    $ins_agenda_previsionnel->registerTrigger("AFTER", "Trigger_LinkTransactions3", 98);
    $ins_agenda_previsionnel->registerTrigger("ERROR", "Trigger_LinkTransactions3", 98); //liste IRP
    // Add columns
    $ins_agenda_previsionnel->setTable("agenda_previsionnel");
    $ins_agenda_previsionnel->addColumn("id_agent", "NUMERIC_TYPE", "VALUE", "{rsfiche_agent.id_agent}");
    $ins_agenda_previsionnel->addColumn("aaaa_mm", "STRING_TYPE", "CURRVAL", "");
    $ins_agenda_previsionnel->addColumn("titre", "STRING_TYPE", "VALUE", "ENTREE AGENT");
    $ins_agenda_previsionnel->addColumn("evenement", "STRING_TYPE", "VALUE", "Entrée Agent {Vue_Visu.prenom} {Vue_Visu.nom_complet} ");
    $ins_agenda_previsionnel->addColumn("deb_eve", "DATE_TYPE", "POST", "date_debut_effective");
    $ins_agenda_previsionnel->addColumn("fin_eve", "DATE_TYPE", "VALUE", "{Vue_Visu.date_fin_contrat}");
    $ins_agenda_previsionnel->addColumn("frequence", "STRING_TYPE", "VALUE", "1");
    $ins_agenda_previsionnel->setPrimaryKey("id_agenda", "NUMERIC_TYPE");

  • How to get PHP mail() function to WORK?

    The topic title speaks for itself. I only want the exact following code to actually send an e-mail, just as it does on any external server:
    <?php
    mail(<i>an e-mail address</i>, <i>a subject</i>, <i>some text</i>);
    ?>
    Is it possible?
    I have the sendmail_path set to /usr/sbin/sendmail -t -i in php.ini, and MAILSERVER=-YES- in hostconfig.
    I would like to avoid using sendmail's -f option if possible (this does not work for all e-mail addresses anyway).
    Mac mini Core Duo   Mac OS X (10.4.7)  

    Hi Neithan,
       If, as your profile indicates, you are using Tiger, you are using postfix when you use the "sendmail" command. Sendmail is no longer installed but postfix comes with an "emulator" to keep legacy stuff from breaking. It's still a good command line method for sending mail.
       I'm not sure if setting MAILSERVER=-YES- causes postfix to listen on the smtp port or just for local connections. However, I thought that local connections were sufficient to send mail. Try it and if it doesn't work use Postfix Enabler. Just remember that changing the hostconfig file doesn't take effect until the next reboot. (or run of SystemStarter)
       Also remember that most ISPs don't accept mail from unrecognized machines anymore.
    Gary
    ~~~~
       Money isn't everything -- but it's a long way ahead of
       what comes next.
             -- Sir Edmond Stockdale

  • Cannot use the application "Safari" with Leopard

    When I try to open Safari in my non-admin account I get an error message reading 'You cannot use the application "Safari" with this version of Mac OS X'.
    Bizarrely, if I logon as the admin account it works perfectly.
    I have repaired permissions, run software update, repaired permissions again, logged in as SU and fscked and still the same thing. I discovered that Omni Outliner would open the plist but I don't have the knowledge to interpret that.
    I think I have used Safari on this laptop since upgrading to Leopard. Most of the time I use Firefox so it hasn't been an issue anyway. The really bizarre thing is it works normally in the admin account.
    All suggestions welcome.

    Thanks for that. Tried it to no avail
    I have found out what has gone wrong but I have no idea how.
    I keep all my browsers in a subfolder of the applications folder. I trashed Safari with the intention of downloading a clean version from the Apple website. When I got there I couldn't find a version for OS X (there may be one, it just isn't obvious). So I thought I'd just try Safari one more time from my admin account. Of course the app wasn't in the browser folder. So I went to put it back in the applications folder with the intention of moving it from there to the browsers subfolder.
    But no. There was already a newer version in the applications folder. How did it get there? I have no idea. But it opens. So I've moved it to the browsers subfolder and it still works.
    So problem solved. I don't understand how it happened. And especially why it worked all along in the admin account.
    Thanks to everyone who suggested solutions.

  • HT5501 i cannot use the mail app anymore.

    after the security update, i'm using snow leopard 10.6.8. it says my version 4.5 (1084/1085) can't be used in my version of OS X (10.6.8)

    As Apple clearly allows to move the mail app into a different place, it is not a valid option to make security updates that expect it, where it was installed originally. I have set up different folders for apps, i.e. office, games, net, tools etc... and dropped the applications there. So my mail.app is located in the subfolder "net". This did work flawlessly since 2009 now. All of the sudden mail.app does not work anymore since yesterday.
    BTW mail is not the only app that gets fu**ed up by the update. I found 2 other programs but could recover them from my time maschine backups yesterday.
    Moving all apps to the default folder and download gigs of data IS NOT AN OPTION.  If Apple does not want me to use their mail client, there are other options. At least until they fix this bug and provide a working update...
    Cheers,    Mike
    I am with 10.6.8 because 10.7.x was unstable windows like bull**it.
    I did not try 10.8 yet but from what I read I am not too optimistic.

  • Cannot use the undo function

    I just loaded Final Cut Pro onto a new computer and I cannot use the undo/redo function keys. Is there a problem with the software or do I have a setting set incorrectly.
    When I go under edit, both undo and redo are grey so I cannot use. I also cannot use the short cut key.

    Undo/Redo is command and Z. Are you using a different keyboard layout than US English?
    You can set the number of undos from the menu bar: Final Cut Pro > User Preferences > General.
    This functionality is dependent on how much RAM is installed in your computer - setting a higher number of steps backwards will use more. How much do you have installed?
    Undo/Redo is only available after you have done something to the media in FCP. It is not saved in your project file. Closing a FCP project will lose any saved undo steps, although you can still use one of the Auto-saves of your project file to go back.

  • I seem to have multiple problems related or unrelated.  I cannot use Apple Mail for blueyonder and mostly for gmail as both show that the server is off line.  My pop up blocker doesn't work and I am blitzed with pop up windows on nearly every command

    Firstly I am unable to use Apple mail except for hotmail, for blueyonder, gmail or Sky as the server shows as (off line) and I have no idea how to get them on line even though I tell them to go there. 
    My pop up blocker doesn't work and I am blitzed with advertising windows virtually on ever command I make, one seems to be impossible to unsubscribe from. 
    When I am in an email with a web link the web link doesn't work and I get a window saying that I must have a pop up blocker, but if I switch it off it is no different, what does work is switching the "enable Java script off", then when I get to the web site I can't use it until I switch the java script back on.
    I can't do a screen shot either full or partial, when I try it changes the web site that is on screen to another.
    So what have I done that might have caused problems, downloading Yosemite seemed to be the start of the problems.  Since then I have started to install Mackeeper, after checking with a family members who should know, that MacPaw is safe.  I decided that I didn't want to pay the subscription, so went through the uninstall instructions but it comes up as a pop up with considerable regularity.
    My stress levels have gone through the roof with pop ups happening so regularly and not being able to use Apple mail.o can anyone help please?
    S

    Mail troubleshooting - Yosemite
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • Using iCloud mail in Snow Leopard - AND restoring old mail system

    I use Snow Leopard and cannot upgrade to Lion since my MacBook Pro is too old.
    Apple discontinued my traditional Mail service last week and said it is now transferred to iCloud.
    1. Is there any way I can get my traditional Mail service restored since I like it better than the "improved?" iCloud-based mail service.
    2. What I don't like about the new iCloud-based mail service is...
    a. Sent mail does not always appear in my Sent folder.
    b. When wanting to file a recent mail message away, I have to scroll thru all the folders AND many, many sub-folders. The system does not let me hide the sub-folders so I don't have to scroll so long.
    c. It seems as if the iCloud mail speed is much slower than the old non-iCloud mail service.
    d. It is very hard to make to Contacts for ease in sending mail
    3. IF there is no way to get my traditional mail service restored, is there a way to get the "classic" look if I am forced to use the iCloud mail system?
    Any help would be appreciated. Thanks
    Valueman

    Tomovich wrote:
    But the archive and junk files are not shown like that online.
    Display differences are cosmetic, ignore it.

Maybe you are looking for