Email stored addresses

Is there any way in deleting stored email addresses from the drop down email address bar? For example, when I write a new email say starting with 'S' 20+ email address appear. There are many that I no longer want or in fact are incorrect. (Although I've ticked the do not store button) Is there anyway of deleting them from the address bar? Many thanks.

You need to delete the ones you don't want from your Contact list.
You can click the white star next to this message if you think it was helpful.

Similar Messages

  • How to send scripts via email(Internet Address)

    Dear all,
    I want to send scripts/smart forms via email (Internet Address). How can I do that …please advice…?
    If any one has worked on it please send me sample code for the same.
    Thanks in Advance…
    Thanks and Regards:
    M.Manohar

    Hi Manohar,
    Check this Program.
    REPORT zptpfrm202p_pogr_pr_instr MESSAGE-ID zmm.
    TABLES *
    Database table made for getting information about PRINTPREVIEW and
    PRINT command more than one times
    TABLES: zgr_table.
    TYPE-POOLS:syscr.
    GLOBAL TYPE DECLARATION *
    DATA: zdoc_output_info TYPE ssfcrespd, "SF:Return Document Inf.
    zjob_output_info TYPE ssfcrescl, "SF:Return value at end of
    form printing
    i_control TYPE ssfctrlop ,
    i_output_options TYPE ssfcompop,
    zjob_output_opts TYPE ssfcresop. "SF:Return value at start
    of form printing
    *This internal table is used for storing Document Segment: Material
    DATA: BEGIN OF i_mseg.
    INCLUDE STRUCTURE mseg.
    DATA: END OF i_mseg.
    This internal table is used for storing Header: Material Document
    DATA: BEGIN OF i_mkpf.
    INCLUDE STRUCTURE mkpf.
    DATA: END OF i_mkpf.
    *Variables
    DATA flag(1) TYPE c.
    DATA: vfile TYPE string.
    SELECTION-SCREEN *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
    PARAMETERS:p_mblnr TYPE mkpf-mblnr OBLIGATORY MATCHCODE OBJECT zganesh,
    p_mjahr TYPE mkpf-mjahr OBLIGATORY MATCHCODE OBJECT zganesh1,
    p_zeile TYPE mseg-zeile OBLIGATORY MATCHCODE OBJECT zganesh2.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-001.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 10.
    PARAMETER:r_disp RADIOBUTTON GROUP g1 USER-COMMAND u1 DEFAULT 'X'.
    SELECTION-SCREEN:COMMENT 15(10) text-002 .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 10.
    PARAMETERS: r_down RADIOBUTTON GROUP g1.
    SELECTION-SCREEN:COMMENT 15(10) text-003.
    *PARAMETERS: v_file LIKE rlgrap-filename .
    *SELECTION-SCREEN:COMMENT 70(50) text-005.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 10.
    PARAMETERS: r_print RADIOBUTTON GROUP g1 .
    SELECTION-SCREEN:COMMENT 15(10) text-004.
    SELECTION-SCREEN END OF LINE.
    PARAMETERS: v_file LIKE rlgrap-filename MODIF ID g12.
    SELECTION-SCREEN END OF BLOCK b2.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR v_file.
    DATA : wlv_field_name LIKE dynpread-fieldname,
    wlv_file_name LIKE ibipparms-path.
    wlv_field_name = v_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    field_name = wlv_field_name
    IMPORTING
    file_name = wlv_file_name.
    IF sy-subrc EQ 0.
    vfile = wlv_file_name.
    v_file = wlv_file_name.
    ENDIF.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF screen-name = 'V_FILE'.
    IF r_disp EQ 'X' OR r_print EQ 'X'.
    screen-input = 0.
    ELSE.
    screen-input = '1'.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    START-OF-SELECTION EVENT *
    START-OF-SELECTION.
    CALLING CONVERSION FUNCTION MODULE 'CONVERSION_EXIT_ALPHA_INPUT' *
    *Conversion function module for appending 00 befor MBLNR FIELD
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = p_mblnr
    IMPORTING
    output = p_mblnr.
    Call subroutine for fetching data from database
    PERFORM get_data.
    END-OF-SELECTION EVENT *
    END-OF-SELECTION.
    Call subroutine for calling and processing smartform
    PERFORM call_smartform.
    *& Form get_data
    Subroutine for fetching data from database
    FORM get_data .
    Fetching data from MKPF table with using parameters MBLNR and MJAHR
    SELECT SINGLE * FROM mkpf
    INTO i_mkpf
    WHERE mblnr = p_mblnr
    AND mjahr = p_mjahr.
    IF sy-subrc EQ 0.
    Fetching data from MSEG with using parameters MBLNR,ZEILE and MJAHR
    SELECT SINGLE * FROM mseg
    INTO i_mseg
    WHERE mblnr = i_mkpf-mblnr
    AND mjahr = i_mkpf-mjahr
    AND zeile = p_zeile.
    IF sy-subrc NE 0.
    CLEAR i_mseg.
    ENDIF.
    ELSE.
    MESSAGE i000.
    EXIT.
    ENDIF.
    ENDFORM. " get_data
    *& Form call_smartform
    Subroutine for calling smartform
    FORM call_smartform .
    Local template used in the processing output of smartform
    TYPES: BEGIN OF lt_ztable,
    mandt TYPE sy-mandt,
    mblnr TYPE mseg-mblnr,
    flag(1) TYPE c,
    END OF lt_ztable.
    CONSTANTS: c_x(1) TYPE c VALUE 'X'.
    Workarea
    DATA: lw_ztable TYPE lt_ztable.
    *Variable used in the smartform
    DATA: lv_form(30) TYPE c,
    lv_fm_name(30) TYPE c.
    lv_form = 'ZPTPFRM202L_POGR'.
    *Calling function module SSF_FUNCTION_MODULE_NAME which gives new name
    *to the function module that will generated by smartform.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = lv_form
    IMPORTING
    fm_name = lv_fm_name
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *Calling function module that will be generated by smartform
    IF r_disp = c_x.
    i_output_options-tdimmed = space.
    i_output_options-tdnewid = c_x.
    i_output_options-tddest = 'LOCL'.
    i_control-no_dialog = 'X'.
    i_control-preview = 'X'.
    ELSEIF r_print = c_x.
    i_output_options-tdimmed = c_x.
    i_output_options-tddest = 'LOCL'.
    i_control-no_dialog = c_x.
    ELSE.
    i_output_options-tdimmed = space.
    i_output_options-tdnewid = c_x.
    i_output_options-tddest = 'LOCL'.
    i_control-getotf = 'X'.
    i_control-preview = space.
    i_control-no_dialog = c_x.
    flag = c_x.
    ENDIF.
    CALL FUNCTION lv_fm_name
    EXPORTING
    control_parameters = i_control
    output_options = i_output_options
    user_settings = space
    zmkpf = i_mkpf
    zmseg = i_mseg
    IMPORTING
    document_output_info = zdoc_output_info
    job_output_info = zjob_output_info
    job_output_options = zjob_output_opts
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 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.
    Modify the database table if it found the print command
    IF zjob_output_opts-tdpreview NE c_x.
    lw_ztable-mandt = sy-mandt.
    lw_ztable-mblnr = p_mblnr.
    lw_ztable-flag = c_x.
    MODIFY zgr_table FROM lw_ztable.
    CLEAR lw_ztable.
    ENDIF.
    IF flag EQ c_x.
    DATA: li_lines LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA: lv_file TYPE string,
    lbin_fsiz TYPE i.
    lv_file = v_file.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    IMPORTING
    bin_filesize = lbin_fsiz
    TABLES
    otf = zjob_output_info-otfdata
    lines = li_lines
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 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.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = lbin_fsiz
    filename = lv_file
    filetype = 'BIN'
    TABLES
    data_tab = li_lines
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3
    invalid_type = 4
    no_authority = 5
    unknown_error = 6
    header_not_allowed = 7
    separator_not_allowed = 8
    filesize_not_allowed = 9
    header_too_long = 10
    dp_error_create = 11
    dp_error_send = 12
    dp_error_write = 13
    unknown_dp_error = 14
    access_denied = 15
    dp_out_of_memory = 16
    disk_full = 17
    dp_timeout = 18
    file_not_found = 19
    dataprovider_exception = 20
    control_flush_error = 21
    OTHERS = 22.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDFORM. " call_smartform
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • I want to use my icloud email address as a new apple ID.  It was an additional email contact address I originally set up for my child.  But now, I'd like to set her up on Family Sharing, using that email as her ID.  Obviously, when I try to use it wh

    I want to use one of my icloud email addresses as a new apple ID.  It was an additional email contact address I originally set up for my child.  But now, I'd like to set her up on Family Sharing, using that email as her ID.  Obviously, when I try to use it when setting up a new apple ID, it says the email is already being used (Yes, by ME) and I need to select a different one.  Can I somehow delete that email address in order to set up a new apple ID using it?  Or is there another way to "re-use" that address for my child's new ID?

    "Well, then I want to be able to merge that one and the one my purchases are on..."
    This is exactly what I want to do but don't think I can:
    I noticed the following :
    If you attempt to create an Apple ID which is the same as your @icloud email address from the online facility, it does not allow you (can't use an Apple associated email address as your Apple ID). However - if you start a fresh device - such as a new iPhone, iPad (must be mobile it seems), and then create an iCloud account and Apple ID from the prompts when setting up the mobile device, it IS possible to have your Apple ID and @iCloud email address as the same. I know because I just did it!
    Unfortunately for me, the result I got above is not for one of my own ID's but a friends, and I would VERY much like to do the same - my current Apple ID is a completely different email address from my iCloud account. Trying to get them the same in my situation is a major bother - I think that if I wipe a device (such as an iPhone5 that is mine) and try to setup as I did my friend's device, then I will get a conflict because the iCloud email I have ALREADY exists. This is my worry and I will not attempt this until I get the new iPad 4 soon to test this.
    There is an inconsistency here between the two methods of creating Apple ID's and iCloud accounts.
    Overall in my opinion, the Apple ID system as currently available from Apple is not designed very well, and should be addressed.
    Best wishes -

  • Problem with replies in Maverick's mail.  Originating emails send fine.  When replying to an email (various addresses) the reply is hung up and can not be sent.  Option becomes put in draft, delete, etc.  Any suggestions would be helpful

    Problem with replies in Maverick's mail.  Originating emails send fine.  When replying to an email (various addresses) the reply is hung up and can not be sent.  Option becomes put in draft, delete, etc.  Any suggestions would be helpful.  Mid 2013 iMac.

    I don't know how rare this is.  I went a week or so without a problem, and now it's starting to recur.  Also, in some instances, an email will look unsent (remain in the outbox on the Treo), but it has been sent, and recipients are replying while I'm trying to figure out what is going on.  Further, it will send the same email over and over during this madness.
    This is a show stopper.  If there isn't a software fix soon, I may chuck this phone in the garbage.
    Post relates to: Treo 800w (Sprint)
    UPDATE:  The problem comes and goes.  The next day, no changes to the treo, everything workeds.  Now i'm suspecting the sprint server, and how it/the phone responds from failing to send while roaming.  I've since turned off roaming, and haven't had a problem for several days.
    Message Edited by slrichardson on 12-22-2008 01:12 PM

  • Email and address book help

    Since i downloaded leopard i've had trouble with email and address book.
    1. when i receive some emails from people it will say it is to someone else instead of me my address will be there with someone else's name. i go to the address book and my email is listed as one of theirs. after a while it will change to another persons name. this is weird. and i cannot seem to get my email sound when receiving mail. everything worked fine until that darn leopard came about. any ideas? thanks.

    Sorry, that's not a Firefox support issue. Try Windows Live Support.<br />
    http://windowslivehelp.com/product.aspx?productid=1

  • How can I change my email account address on my Drop Box account. The present address is wrong.

    How can I change my email account address on my Drop Box account? The present address is wrong.

    Dropbox is not in any way associated with Adobe.  Ask Dropbox support, or start using Workspaces at https://www.acrobat.com/

  • I lost my address book when I installed Mountain Lion and have not been able to recover it.  WHen I type in a name in an email the address shows up, so I know it is in there.  How can I restore my address book?

    I don't know how to do this.  I typed the question in the bar above, but apparently need to type it again here.  I lost my entire address book when I installed Mountain Lion and have been unable to recover it.  I know the information is in there as when I type in someone's name in an email the address always shows up right away.  How can I find the information for my contacts and restore my address book? Do I need to go to the Apple Store that is 2 hours away and have an expert help me or can I find out how to do it online for free myself?

    The auto-complete in Mail addresses comes from two sources: (1) The "Previous Recipients" list, which can be viewed via Mail > Window > Previous Recipients. (2) Your Address Book (now called "Contacts").
    If you did in fact lose your Address Book - are you sure you don't have "Contacts" in your Applications Folder? - It sounds like you are getting addresses from source (1).  If you did in fact lose your  Address Book (now called "Contacts" !!), you will have to restore it from a backup.
    charlie

  • Can we have a Signature in the Adobe Send? also can it remember our passed email recipients address like SendNow did?

    Can we have a Signature in the Adobe Send? also can it remember our passed email recipients address like SendNow did?

    Hi there,
    In terms of the KB.
    You are probably looking at the old one.
    New one:
    http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html
    Have you checked out the guide section and faq section on these forums as well? Lots of cool stuff.
    There is no Wishlist as there are other things a bit more tight in place where experienced partners work with BC on stuff for everyone. While the Amazon migration is taking a lot of man power out of BC development at the moment this was already seeing great and right features rolling out for all.
    Support has gone through a lot of changes and had a bad patch but the ticket system is on an all new system and I BC had a big jump so they had to hire a lot of new people, and it was rough for a while but I think this has improved a lot and continues to prove as the support team gain more experience. You can only be good at a support job once you learn the system and get more experience. That can only happen with time.
    In terms of problems and issues etc - You have the system status page, of which you can also subscribe too for updates via RSS and email:
    http://status.businesscatalyst.com/
    And the Blog is ALWAYS updated of the latest happenings. Big things like the Migrations partners have been getting emails and you will have seen this come through.
    You also need to check the forums as well as a lot of things are covered more then once on here, If you have an issue make a ticket but it is likely BC already know and other partners have already passed it on.
    Good to have feedback here and the team will defiantly take your points on board I am sure, but I just wanted to cover things as well, as often people just dont know things exist or dont check the right places for information saying there is none when BC defiantly does put the information out there.

  • List of email clients/address books that will sync with palm desktop 6.2

    Is there (and if not, I think there should be) a list somewhere of email clients whose address books will sync with a palm Treo (palm Desktop version 6.2)? I have been happily using various palm handhelds for about 6 years now and have been syncing the address book with Mozilla and now Thunderbird  for the last couple years. I currently have an m130, but it's time to upgrade to a "smart phone" as I'm tiering of carrying around two devices. Unfortunately, the Treo requires palm Desktop version 6.2 which is not compatible with the Thunderbird palm sync. I have had the idea that Outlook (which I've never used or been exposed to) will sync with palm, but something I read gave me the impression that I would need to buy some third party software to make that happen, plus the $110 they want for Outlook. I would like to think there are other choices for someone who just wants to sync their smart phone with their email client's address book. It seems that such syncing ability would be esential to palm's sales and that a listing of all such syncing possibilities would be extremely beneficial to sales, particularly for new sales to people aren't already insiders on this sort of topic. The lack of ability to sync with Thunderbird may just cause me to stick with my old m130 awhile longer and give up on the idea of a nice new smart phone.
    Post relates to: Palm m130
    This question was solved.
    View Solution.

    Wow, thanks a bunch! You just saved me from a long, involved, and discouraging search for an alternative. I'm using WindowsXP, palm m130, palm desktop 4.1, Thunderbird 2.0.0.21 and Thunderbird's palm sync conduit palmsync-2.0.0.x-wsm .  I'm wanting to purchase a Treo 700 on ebay, but went to the palm site, clicked on the support link, then the Treo 700, then the downloads tab and it directed me to desktop 6.2, which made me believe I would have to use that to sync a treo 700.
    I do wish that both palm and Thunderbird would talk more about the palm Thunderbird palm sync. Unless you're a real geek or very determined (I'm the later), you're not likely to find out that such capability exists. I can't believe I'm the only one out there who needs to have my email client address book contacts with me all the time, so there has to be others who are looking for this.
    Next stop, ebay - I have a smart phone to buy.

  • How come Verizon Wireless will not give their customers a corporate number, email, or address to send complaints?

    I have been with Verizon Wireless for 7 years and I have went through more problems in customer service in the last year then I have in my whole 7 years. Usually if I have a problem they fix it immediately, I tend to call instead of going into a Verizon store because Verizon stores just do not care about their customers. I am beginning to think the same thing about Verizon Wireless customer service.
    Problem number 1: Verizon Wireless making changes to my account, aka payment arrangements, without my knowledge or consent. Making my phone shut off because I was 3 days late. Yes THREE DAYS... not months. Then after they turned my phone on because of their error I paid my bill. About a couple weeks later I decide that I want to purchase a new phone and want it billed to my account. They then tell me that no I could not have it billed to my account because my phone was shut off for non-payment. I then explained that it was an error, they then told me that they could not over-ride the system and I would have to wait 6 months to bill to my account. I asked if that meant I could bill to my account even if Iam late a couple days or what. They told me as long as my phone had not shut off because of non-payment I would be able to bill to my account, also that they would write a formal complaint on the person who made a payment arrangement on my account without my consent and they would get back to me. That was in Mar of 2013. I am still waiting for a reply from my complaint.
    Problem number 2: In March of 2013 Verizon had an email option on their website where you could email corporate and they will email you back. Since then they have taken it off and will not give their customers email, number, or address where they can reach corporate at.
    Problem number 3: Sept of 2013, it has been 6 months. I I then call Verizon to bill to my account a new phone, because I wanted to start a new contract. Well they tell me that because I do not pay on the same day of every month I will not be able to bill to my account and they can not over ride the system. I then tell them that this was not what was told to me in March of this year. The rep tells me that she cant do anything for me except investigate it and get back to me within 4 hours. I say okay and leave my number I wanted to be reached at, I asked if she was sure that she was going to call me back because I have been told in the past by verizon wireless reps that I would receive calls from them and they never bothered to return my call, because basically I was un-important. She stated that she would and she appreciated the business I gave Verizon for the past 7 years. (she was a supervisor by the name of Jeniffer in customer service on the east coast). 5 hours later I still had not received a call so I call back and ask to speak to a supervisor they then tell me that my claim was denied for "unknown" reasons about the call 6 months ago and they were not going to let me bill to my account and they couldnt help me further. I asked for a a corporate number, email, or address and they told me repeatedly that they did not know them and could not give them out if they did know them. That if I had a complaint he could notate it and make sure it was handled. Psssh just like it was handled 6 months ago. I daid thank you but no thanks and ended my call soon thereafter.
    It just galls me that Verizon treats their customers who make them money by using their services and phones every year. They do not have any care for the complaints and actions of their workers as well as their customers.
    I just want to know it anyone knows they corporate number, email or address??
    Or maybe a verizon rep out there (which I pretty much doubt will respond to my question)
    If I dont receive an answer soon I believe... no i KNOW I will be taking my $127.33 else where and maybe just maybe I can get better customer service, even if its just a tiny inch better than Verizons.
    AT&T here I come.

    yesterday i went to verizon with a 8 day old broken phone after 40 mins in line to be helped  the sales staff at glenway av in cincinnati turned me around and sent me out the door without solving my problem or returning my less than 14 day old phone.  i called corporate at >>removed<< they called the store and made an appointment with the manager to resolve my issue. when i returned to the store i was told i had to wait in line again so i decided to get loud enough for every customer in the store to hear what kind of customer service i was recieving.  so then the employee at the door not the manager called the police on me and threw me out of the store so today i am returning my phones and am seeking other service providers  but anyhow the corporate number i provided is a good one and the people you reach will solve your problem  corporate level is does do a grat job but the customer service level and store level employees i have found to be very unproffessional and extreemly mismanaged.
    >> Edited to comply with the Verizon Wireless Terms of Service <<
    Message was edited by: Verizon Moderator

  • How to reject emails using address email's sender

    Hi,
    I'm wondering if it's possible to reject emails using address email's sender.
    Thanks,

    sorry, I thought it was one of the built in options. you can do it with an apple script rule then.
    paste the following into a blank Applescript Editor window . Applescript Editor is located in /Applications/Utilities
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    using terms from application "Mail"
    on perform mail action with messages selectedMsgs
    repeat with msg in selectedMsgs
    tell application "Mail"
    bounce msg
    end tell
    end repeat
    end perform mail action with messages
    end using terms from</pre>
    save the script somewhere and set your Mail rule to run this script on messages from that sender.

  • How can I recover my previous information, do not know what happened but I lost all my emails contact address books and folders.

    My PC froze, it must have shut down during the night. This morning when I started Thunderbird email, all my emails, folders, address books calender were gone. Thunderbird acted like I was a new subscriber.
    How can I recover my emails, folders, address books and calender.

    http://kb.mozillazine.org/Recovering_a_profile_that_suddenly_disappeared

  • How do I configure Sprint Mobile Email to show my name in the email return address?

    I am using Sprint Mobile Email to check & send my Yahoo email on my Palm Centro.  When I send emails it only shows my email address in the return address and not my name.  I have my name set up in Yahoo but it doesn't get picked up when I send emails from my phone. 
    How do I configure Sprint Mobile Email to also show my name in the email return address?  Everyone may not recognize my email address as being me.
    Thank you
    Post relates to: Centro (Sprint)

    Hello and thank you for using the Palm Help Forums!
    You may want to contact Sprint for further assistance with the Sprint Mobile email. However, I can assist you with the built in Email (Versamail) application.
    Post relates to: Treo 800w (Sprint)

  • How do I read my archived email stored as a pdf by adobe?

    How do I read my archived email stored as a pdf by adobe? I have been archiving my email in adobe x.  When I go to view it I cant seem to access the information, but the file is 200 mb and growing. I can read the first email but that is all.

    I set up the archiving as per the “Setup Automatic Archival” instructions and it
    appears to be archiving things in a pdf, however when I go to open up the saved
    file “text.pdf” all that I see is the first e-mail in the collection as a pdf
    and nothing else.  I can’t seem to access the rest of the e-mails.
    They appear to be there, if I look at the volume of the file, 200 mb (screen
    shot 2).  I have tried opening it from acrobat pro x, outlook, acrobat
    reader and other various programs to no avail.
    I have attached (tried to) a print screen:
    Screenshot of the file explorer showing archived file names and volumes.  (the title
    CGT902 email.pdf at 203,885 kb is the archive title.  The first screenshot
    below is what I see when I open it.) 
        Thank you for responding to my question.  This seems simple but I seem to have hit
    a wall.

  • Is there a way to recover old emails? I moved a few folders around on the hard disk and now my emails have reverted to Factory settings and all my old emails and address book have vanished. I am still running on 10.4.11 and Apple can not help me.

    Is there a way to recover old emails? I moved a few folders around on the hard disk and now my emails have reverted to Factory settings and all my old emails and address book have vanished. I am still running on 10.4.11 and Apple can not help me. Does anyone out there have any idea on how to recover my lost emails and/or addresses?

    Well, your profile info says 10.4.11, and you are posting your question in the iMac (PPC) category.  If you are running Snow Leopard, it must be a fairly recent Intel iMac.
    In that case, you should definitely post your question here
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard
    where other Snow Leopard users can see your question.  Restate the problem, what error messages you get, and what you have tried already (for trouble-shooting).

Maybe you are looking for

  • Adhoc query - length of service fields

    Hi all, I have question regarding the length of service fields in adhoc query (Actions infotype data fields PNP database). When I select these fields I get different results according to reporting period; if i select a keydate then the service is cal

  • Convert from firewire to USB ???

    I have a 1st gen 20gb ipod which i bought 3 years ago. My problem is that it is very slow to synchronise from pc to ipod and to update will take up to 50 mins. I have taken this for granted until I bought a nano for my wife and saw how fast this sync

  • Need advice about text formatting and hyperlinking

    Hi folks, Thanks for reading my post. I am new at this and am using Dreamweaver 6.0 for our website. We are putting together a substantial directory on our site and were wondering if there was any way for us to: 1. Not have to enter each hyperlink ad

  • Needing script to move files with name that starts with

    Here is part of the script that takes a excel file for the list to duplicate files from one folder the another. I would like it to use file name starts with instead exact file name. If I can get this to work I will not have to have a try for .jpg and

  • OTA Update - code 401

    I was notified that today's Thunderbolt software update to version 605.5 was available for download. I accidentally pushed back instead of OK & now the update is not available & under status, it says that I rejected the update with code 401. I have t