How to erase servers parameters in Mail?

Hello!
I can't send any emails from my email adress so i have to erase and recreate a new account in Mail. My problem is when i recreate a new account, the computer takes the the old parameters of the servers, and not the new ones. How can i erase the old parameters of the servers, before i erase the account?

Look in Mail / Preferences / Accounts tab to view your email accounts. From there it should be pretty easy to see the incoming/outgoing server information.

Similar Messages

  • How do I set up a mail server and SMTP server to send messages to other mail servers at mavericks

    How do I set up a mail server and SMTP server to send messages to other mail servers at mavericks

    You need to get the settings for your email from your email provider and enter them in Internet Accounts (System Preferences). Many of the common systems are already available, all you need is a password and an email address to set them up.

  • How can I delete all my mail from my computer, but leave it all on .Mac ?

    How can I delete all my mail ( 3.5 ) on my computer ( original G4 ) but leave it all on the .Mac servers?

    backup the device and restore it as new.
    If you already have or don't need a backup:
    Erase your device
    Erasing all content and settings will delete all the data from your device, including songs, videos, contacts, photos, calendar information, and any other data. All device settings are restored to their factory condition.
    To remove all settings and information from your device, tap Settings > General > Reset > Erase All Content and Settings. For more information about this feature, see iOS: Understanding 'Erase All Content and Settings'.
    If you are unable to erase your device, restore the device using iTunes.
    See: http://support.apple.com/kb/HT4137  for the exact steps.
    Transferring ringtones isn't supported, as far as I know...

  • E mail bt print very small and i cannot change it. how can I get my e mails to print readable size

    HOW CAN I GET MY E MAILS TO PRINT TO READABLE SIZE. BT YAHOO WINDOWS 7 HOME PREMIUM HP DESKJET F2480
    NO FONT AVAILABLE TO CHANGE SIZE TO PRINT TO READABLE SIZE EG FONT SIZE 12 OR 14. DISPLAYS ON ABOUT SIZE 8
    ALSO HAVE TO CLICK FULL VIEW TO READ. THIS HAS SUDDENLY APPEARED, DID NOT HAVE FULL VIEW ETC BEFORE .

    Go to the following address: https://account.services.mozilla.com/
    If you DO NOT remember your password, press the "Forgot your password?" link and it will be sent to the e-mail address that you used for registration.
    Enter your e-mail address and your password. Follow any additional prompts. '''This should remove your account and all Sync data associated with your account from the servers.'''
    Then, set up a new account.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Very urjent how to send report output in mail

    hi experts,
    how to send report output in mail which function module should i use wht parameters should i pass.
    thanks in addavnce,
    points to be awarded.

      CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
                destination    = '026c'
                copies         = count
                list_name      = 'VATS_ASBUILT'
                list_text      = v_list
                immediately    = 'X'
                release        = 'X'
                new_list_id    = 'X'
                expiration     = days
                line_size      = 132
                line_count     = 65
                layout         = 'X_65_132'
    *            sap_cover_page = 'X'
    *            cover_page     = 'X'
                receiver       = 'SAP*'
                department     = 'VATS'
                no_dialog      = 'X'
           IMPORTING
                out_parameters = params
                valid          = valid.
      SUBMIT zppr_vats_asbuilt  WITH p_aufnr EQ v_aufnr
                   TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                      SPOOL PARAMETERS params
                         AND RETURN.
      SELECT SINGLE rqident FROM tsp01 INTO l_spoolno
                         WHERE rqtitle = v_list .
    * convert report to PDF format
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
           EXPORTING
                src_spoolid              = l_spoolno
                no_dialog                = 'X'
           TABLES
                pdf                      = l_ipdf
           EXCEPTIONS
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                OTHERS                   = 12.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        EXIT .
      ENDIF.
    Now comes the part to send the mail
      try.
    * -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
          clear document.
    * -------- create and set document with attachment ---------------
    * create document from internal table with text
          document = cl_document_bcs=>create_document(
          i_type = 'RAW'
          i_text = text
          i_length = '12'
          i_subject = '' ).
    *changing the content of the attachment
          binary_content[] = l_iobjbin[].
    *change the name of the PDF attachment
          concatenate 'Build ID' s_buildid_i 'Rev' v_buildid_rev
                              into i_att_sub separated by space.
    * add attachment to document
          call method document->add_attachment
            exporting
              i_attachment_type    = 'PDF'
              i_attachment_subject = i_att_sub
              i_att_content_hex    = binary_content.
    *setting the option to send an e-mail more than 50 characters
          call method send_request->set_message_subject
            exporting
              ip_subject = t_sub.
    * add document to send request
          call method send_request->set_document
            exporting
              i_document = document.
    * --------- set sender -------------------------------------------
    * note: this is necessary only if you want to set the sender
    * different from actual user (SY-UNAME). Otherwise sender is
    * set automatically with actual user.
          sender = cl_sapuser_bcs=>create( 'VATSUPPORT' ).
          call method send_request->set_sender
            exporting
              i_sender = sender.
    *Send the list based on receivers list obtained
          loop at l_ireclist.
            AD_SMTPADR = l_ireclist-receiver.
    * --------- add recipient (e-mail address) -----------------------
    * create recipient - please replace e-mail address !!!
          recipient = cl_cam_address_bcs=>create_internet_address(
          AD_SMTPADR ).
    * add recipient with its respective attributes to send request
          call method send_request->add_recipient
            exporting
              i_recipient = recipient
              i_express   = 'X'.
          ENDLOOP.
          call method send_request->set_status_attributes
            exporting
              i_requested_status = 'E'
              i_status_mail      = 'E'.
    * To send the mail immediately
          call method send_request->set_send_immediately( 'X' ).
    * ---------- send document ---------------------------------------
          call method send_request->send( ).
          commit work.

  • Does anyone know how to erase saved email addresses???

    I want to how to erase the saved email addresses that come out on the drop down menu when you are going to type in a new email address. Thanks.

    The iPhone's Mail client saves all email recipients in a list of previous recipients.
    The autofill email address list is pulled from the iPhone's contacts and from the list of previous recipients.
    There is no way to access the precious recipients list with the iPhone to remove a previous recipient from the list or add a previous recipient to iPhone contacts that is not already entered - not at the present time anyway.
    The only way to purge this list at the present time is by restoring your iPhone with iTunes as a new iPhone or not from your iPhone's backup.

  • I have created two servers in my "Mail"

    I have created two servers in my "Mail" and need to eliminate one of them, as I need to select the proper one, each time I send an email. I don't know how to do that. This is the message I get;
    "The servers marked with alert icons are in conflict and cannot be saved. No two servers may share the same address and authentication settings. Please resolve the conflicts and try again"
    How do I correct this?

    Go to the Mail/Preferences/Accounts/Outgoing Mail Server.
    Click on the drop-down list and choose "Edit Server List"
    This should bring up a window with a list showing the two identical servers.
    If you see two servers in the list that look the same, click on one of them and then click on the - (minus) button below the list to remove the server you've chosen to get rid of.
    Depending on how the settings work out, you may need to go back and select the email account you want to work with and then choose the remaining server for the account to use to send mail (if it isn't already shown in the list).

  • Working parameters in mail template GP

    Hi All,
    I want get parameters in Mail Template and this parameter to get into structure of cardinality 0..n. How I iterated this structure elements?
    I only Know to use
    `{
    writeln (structure.names)
    }`
    How I iterated the attributes names? Eg a structure of type FOR, WHILE, etc...
    Thanks & Regards
    Eduardo

    I think that this is not possible

  • How many XI servers should require?

    Hi Experts,
    In real time scenario..how many XI servers should require? and How many SLD's?
    Shall we maintain the same XI system for Dev and QA or else separate systems.
    And also once done QA then how to send this to Production?
    My mail id:[email protected]
    Thanks in Advance.

    Hi,
    You Can Maintain One SLD . this is Preffered
    You Can Maintain Separate Servers For DEV QTY PRD
    Transporting ---
        /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi --Overview of Transition from Dev to QA
    Reward Points If Helpful
    Regards
    Sesh

  • How to erase a MacBook from a pawn shop ?

    Here's a synopsis of what I'm dealing with. Ive never owned a MAC before so I thought instead of spending a grand for a new one I would see if i could find one locally. so I purchased an early 2008 Black MacBook with OS X 10.7.4 Lion from a local pawnshop. The person who had it before me was still logged on and it had all kinds of accounts set up and such. So I went online and researched how to erase all of that. I did the restart holding the option key which brought me to the MAC OS X Utilities. I selected Disk Utility then selected Macintosh HD and then the Erase Tab. After that I clicked security options and then selected single pass of Zeros. Clicked ok and the  clicked erase. It took about an hour and then I selected to erase the free space. After that I went to to the MAC OS X utilities options box and selected Reinstall MAC OS X. All said and done its now asking me to input my Apple ID and then it says my ID has not purchased the operating system.
    Now what do I do ?
    Do I really have to go to the iTunes Store and buy lion ?
    If that's the case Mountain lion is only $20 will that work as well?
    Once I purchase the software, do I go through the motions again to have it installed like before ?
    Should I just buy a hard copy rather than doing it over the Internet ?
    Much needed help would be appreciated. I've spent days working in this and now my GF wants to kill me. I need this fixed soon.

    Buying a used Mac from any source is best left for experienced Mac users, for the very reasons you described.
    At best you purchased an expensive education, at worst, stolen goods.
    All said and done its now asking me to input my Apple ID and then it says my ID has not purchased the operating system.
    A 2008 Mac would not have had OS X 10.7.4 "Lion" already installed, and it is impossible for you to install it from the Recovery partition since the license to use Lion is not transferable by any means. The seller (more than likely, the thief who stole it) erred in not restoring the Mac to its original condition before selling it to the pawn shop. Without that MacBook's original System Install DVD - which the pawn shop didn't supply, right? - it will not be useful to you.
    There are no "hard copies" of Lion available. Lion exists only as a download from Apple, whose servers check your MacBook for a legitimate purchase of it.
    Your best alternative is to phone Apple at the number shown on the Apple Online Store website. Explain that you purchased a used Mac and require a replacement System Install DVD. Use those exact words. Have the MacBook's serial number ready for them - it will be required.
    Determine the Mac's serial number using the following: http://support.apple.com/kb/HT1366
    Apple will collect a nominal fee, $25 or so. Once you get the disc, boot from it by starting the Mac by holding the c key with the disc inserted, and pray the original owner did not configure a Firmware Password.
    Reinstall its original operating system from that disc, after which you will have reached Step 1 toward using your Mac.
    After installing it, you will need to purchase Snow Leopard from the Apple Online Store, unless its original OS was already Snow Leopard (yours was probably OS X 10.5.2 "Leopard"). Snow Leopard costs $20.
    Only after installing Snow Leopard can you purchase Lion from the App Store. You will need to call the Apple Online Store again and purchase a download code since Lion no longer appears in the App Store. That will be another $20. You will "redeem" this code in the App Store.
    Your MacBook is too old for Mountain Lion.
    Total cost: $65 + tax + whatever you already spent.
    Tell your GF she was right. Do that now, to prevent further compounding your misery

  • If the MS Exchange ActiveSync port had been changed, how to set up the iPad Mail account?

    Hi all,
    The default MS Exchange ActiveSync port is 443 but due to security reason it had been changed.
    Under this situation how to set up the iPad Mail account?
    I could not find out the port modification area in iPad account settings.
    Or any other apps are suitable for multiple accounts within 1 domain?
    That means i can use this app for more than 1 email accounts within 1 exchange server.
    I had tried eMailGanizer. It could allow you to modify the port number but if you need to send email you still need to set up the account in Apple mail first.
    I tried Outlook Mail but could not allow multiple accounts within 1 domain.
    I tried Mail Access 2010 but it could not display the emails in the server.
    Please help!
    Thanks a lot!

    Next test
      using Outlook.com I just deleted an email
        by clicking the Trash icon that appears
          when hovering near an email subject
            in the list of emails.
    Then I clicked the Send/Receive button
      in Apple Mail.
    The email disappeared from the Inbox listing
      in Apple Mail.
    The email is listed in the Deleted Folder
      within Apple Mail.
    The email also appears in Outlook.com
      within the Deleted Folder
    I'm not seeing an equivalent operation in Outlook.com
      to perform the Erase Deleted items
        such as Apple Mail provides..
    There was momentarily a "Sweep to Delete"
      animation that appeared and is now gone..
    Pomme is correct.. by selecting "Erase Deleted Items"
      within Apple Mail does not clear the Deleted Folder
        when the email was first deleted using Outlook.com
    Now I'm seeing further synch problems in that deleting in Outlook.com
      The emails disappear from Apple Mail Inbox,
        but do not appear within the Apple Mail Deleted Folder..
          (as it did with the first message I deleted using Outlook.com)
    Yes.. there is some synchronizing problems..
    I just exited Apple Mail, and restarted it, synched
      and now all messages deleted from Outlook.com
        appear within Apple Mail Deleted Folder..
    For Outlook.com the equivalent operation to Erase Deleted Items
      Is to click the Trash icon next to the emails
        within the Deleted Folder..
    Moral of the story is for Apple Mail
      periodically select Erase Deleted Items
      and for Outlook.com
        periodically look in the Deleted Folder
          and delete those emails (that you already deleted)
            a second time..

  • How do i remove an e-mail mailbox from my iPad (leaving one behind)?

    How do I remove an e-mail mailbox from my iPad, as it appears to be causing problems with an nhs.net account?

    You can deactivate an email account in Settings > Mail, Contacts, Calendars > the account > Account. Turn it OFF.

  • TS3899 How can I block an e-mail address on iPhone 5s? My ISP is unable to help. I can block via Outlook on my laptop, but they still come through on my iPhone

    How can I block an e-mail address from sending me spam on my iPhone 5s? My ISP is unable to help. I can block on my laptop via Outlook, but they still come through on my iPhone 5s. Thank you very much.

    You can "Move to Junk" and it should start doing it automatically after a few times:
    http://blog.mailup.com/2013/09/mail-app-in-ios-7-our-first-tests/

  • Why does FireFox truncate part of an E-mail of more than one page when I try to print it out? How can I sent an E-mail blaet to several but only show one name o

    When I try to print out an E-mail that is longer than one page, part of the 2nd page is truncated. I then have to go to Safari to print out the entire E-mail without part of it being truncated.
    When I have multiple E-mail addresses on a single E-mail, how can I send the E-mail so that each recipient only sees his/her name and E-mail address rather than everyone else that the E-mail is addressed to?
    Please advise.
    Thank you.
    Bill Leete

    Some style rules that Firefox handles well on the screen can cause this problem. Many email sites have a print button which simplifies the message format and removes navigation elements, etc., and Firefox generally handles print-formatted pages better. If your email site doesn't have print-formatted pages or those do not print, a "hack" is to select the text you want to print and then choose the Selection option in the print dialog.
    To hide email addresses from recipients, you need to place them in the BCC field. What do you put in the TO field in that case? You can use your own address.

  • HT201342 How can I add an e-mail address to my existing icloud addresses?  I currently only use one and I would like to ad two more?

    How can I add an e-mail address to my existing icloud account?  I curently only use one of the three.

    Each iCloud account only has a single iCloud account.  If you want, you can add up to 3 alias addresses that will receive email in the same iCloud inbox, as explained here: http://support.apple.com/kb/PH2622.

Maybe you are looking for

  • Strange discrepancy in report painter

    Hi everyone, I've designed a report painter with all the respective columns & formulas intact but at the Grand Total col (summation of all the sub-totals), the figure doesn't tally with all the sub-totals. All sub-totals have been added correctly but

  • Every time I try to restore my iPod touch 4G, I get an error message.

    I plug my iPod touch into my computer, open iTunes, go to Devices, go to my iPod touch "King" and click on Restore. It asks if I want to Back Up the iPod, I choose Don't Back Up because I already have a Back Up I want to restore it to. Then the usual

  • Unable to load HP printer driver-Error message!

    Hi, Just wondering if anyone can be of any assistance. I recently purchased a HP Photosmart 2575 all-in-one printer and installed the necessary software, which said it was successfully installed. However, whenever I boot up the G3 I keep getting the

  • RDWA - limit to one monitor full screen for IT support staff

    In our shop, we use RDWA to access the Windows 7 virtual desktops, server is Windows Server 2012. Since IT support staff have two monitors, when they login to user's virtual desktop for testing / support purpose, the display will be spanned across tw

  • Documents related to PI

    Hi Friends, I am new to PI and finding it difficult to locate some good material on PI online. Could someone kindly help me with locating some documents related to SAP PI. Thank you in advance. Warm Regards, Balaji.K