Cannot Delete my domain controlled mailbox in mail.app

Hi. I just got a Mac Server (Mac Mini). I set it up i plugged it into my network at home. For some reason, my iMac prompted me to setup ical and mail. Not knowing much about it, I just proceeded on with it. A mailbox appeared in my mail.app which i could not remove. I searched around and tried my best to remove it without avail. The mailbox name is
<my username>@CYC-MAC1.local
Problem is, I've reformatted my server and reinstalled the OS and so CYC-MAC1.local does not exist anymore.
How do i get rid of it? I tried
1) Deleting the com.apple.mail.plist file
2) Deleting the mailbox from mail.app preferences, but it just keeps coming back.
Not sure what else i can try. Any ideas would be appreciated. Thanks!

Duh, I managed to solve it myself.
What I found out is that my ISP's DNS as well as invalid certificates were the most likely culprit.
What I did was go to System Preferences -> Network -> Click "Advanced..." for my Wi-Fi -> then selected the "DNS" tab.
For "DNS Servers" I added in Google's public DNS which is 8.8.8.8.
Once set, I started the Mail app and went into the preferences for the mailbox that had the issue. Immediately I received a prompt for the certificates. I then displayed the certificate and then set "Always Trust" for the certificate.
When done, it was all ok!

Similar Messages

  • PLEASE help!! I use Outlook for my email and the Mail App Icon in my dock was also storing all my emails. So, I tried to delete ONLY the emails in the Mail App but somehow (under Preferences maybe?) I also deleted all my emails in my Outlook inbox.

    PLEASE help!! I use Outlook for my email and the Mail App Icon that is in my dock, that I know nothing about, was also storing all my emails. So, I tried to delete ONLY the emails in the Mail App but somehow (under Preferences maybe?) I also deleted ALL my OUTLOOK emails in my inbox.  Can someone please please tell me if there is a way to get my Outlook inbox emails back OR EVEN the emails that were in my Mail app - because even tho I never use the Mail app, at least the emails would be there.
    When I was trying to delete the emails in my inbox for the Mail app - I followed THESE directions.  It did in fact clear my inbox for the Mail app.  But then I went to log on to my Outlook account and EVERY SINGLE EMAIL was gone.  And not in the Deleted box.  Just gone.  Here are the directions I followed that screwed everything up.  Please help.
    Top menu bar, Mail > Preferences > Accounts > Mailbox Behaviors.
    Uncheck "Store deleted messages on the server".
    At the drop list for "Permanently erase deleted messages when", choose "Quitting Mail".
    Next...
    Top menu bar, Mail > Preferences > General.
    At "When searching all mailboxes, include results from", uncheck "Trash".
    Select All = command A

    i found out my prob!
    here is what you do.
    go to the "system preferences" on your dock.
    click "software updates".
    click "installed software"
    if it shows something about a recent update about "EFI UPDATE, FIRMWARE, THUNDERBOLT" or anything like that, exit out of it.
    go to mail.
    click "mail" at the top.
    click "preferences...".
    find the account you are having trouble with, once you do, make sure its highlighted, then click the "-" at the bottom of the window (this will only effect that mail account, it will not effect your ical weather or not its synced thought that email account)
    hit the "+" (right next to the "-") and add your accout back!
    its something with that update that effected mail, i hope this works out for you, if not reply back

  • When I create a new mailbox in mail.app, the mailbox does not appear in the list of mailboxes

    I am trying to create a new mailbox in mail.app, but it never appears in the list of mailboxes. This USED TO WORK.

    Without seeing anything of what you did there is not much to go on except to say that when you create a classic tween you use a library-based object and it has to exist at both ends of the tween.  When motion guides come into play you usually have to fiddle around when making the link between the object and the motion guide to get the object to lock to it.

  • Cannot forward one page PDF files from mail app

    My earlier topic had incorrect problem report so I've created a new topic.
    The problem is i cannot forward one page PDF file from mail apps. I use imap set up for my work email.
    Multi page PDFs, photos, docs, numbers, all forward OK for both windows and Mac formats.

    Update: I hade had a reply from the Good Reader app developer saying this is a known issue even for them. However, they don't know if Apple will fix this or not.
    Basically mail app treats all one page PDF as if it's an image and will forward it the same as it would an image. Any non-apple based mail programs will have issues viewing this file..

  • I inadvertently removed the junk mailbox from Mail.app in SL, how can I recreate / restore it ?

    Hi,
    Well, the title says it all : I inadvertently removed the junk mailbox from Mail.app in SL,
    it still is spresent in my ~/library/mail folder, how can I recreate / restore it in mail.app ?
    Since I have a fair number of email accounts, intelligent mailboxes, rules and archive folder, I really don't want to rebuild everything. And, no, I can't use time machine to restore it.
    All help will be greatly appreciated.

    Hi AdamKB, sorry for late follow-up.
    What I lost is the "container" that groups all junk mailboxes in one place in Mail, like is done for all the inboxes.
    The problem is that I lost visibility on all junk mailboxes. It is only a visibility problem because the junk mailboxes are still present locally for my POP accounts and remotely for may IMAP accounts, I justdon't see them anymore in Mail's interface.

  • Prompting user for their choice of mailbox in Mail.app

    All I want to do is ask the user to choose a mailbox in Mail.app. But, there is a problem:
    "mailbox Y of account X" shows
    mailbox "FULL/PATH/TO/Y" of account X of application "Mail"
    while "name of mailbox Y of account X" shows
    "Y"
    This makes it awfully hard to prompt users for their choice of mailbox. I could go up the containers of mailbox Y, until I get to account, but this takes quite a long time.
    Is there a good reason for this behavior of the "name" property?

    Similar to Hiroto - 'I'm not sure what you're looking after.'
    Thus, below is some sample code to work with:
    tell application "Mail"
    set tMailboxes to mailboxes of account "sl-ugs" -- Obtain mailboxes of specific account.
    set nList to {} -- List to contain mailboxes names.
    repeat with i in tMailboxes -- Cycle through mailboxes of specific account.
    copy (name of i) to end of nList -- The name of each mailbox is placed into 'nList'.
    end repeat
    -- Provide an interface for the user to select a desired mailbox.
    set tSelection to (choose from list nList without multiple selections allowed and empty selection allowed) as string
    repeat with i from 1 to (count tMailboxes) -- Cycle through the list of mailboxes.
    if ((item i of nList) is equal to tSelection) then exit repeat -- Determine list location of selected mailbox (in 'tMailboxes')
    end repeat
    set tMailbox to item i of tMailboxes -- Obtain full listing of selected mailbox
    set tMessages to messages of tMailbox -- The messages of the selected mailbox.
    set mList to {} -- List to contain 'subject', 'from' and 'date received' field items of each message of the selected mailbox.
    repeat with j in tMessages -- Cycle through the list of messages.
    -- The 'subject', 'from', and 'date received' field items of each message of the selected mailbox are placed into 'mList'.
    tell j to copy {subject, sender, date received} to end of mList
    end repeat
    -- Example code showing 'tMailbox', 'nList', 'tSelection', list location of selected mailbox, messages of 'tMailbox', and finally - the 'subject', 'from', and 'date received' field items of each message of 'tMailbox'.
    tMailboxes & return & return & nList & return & return & tSelection & return & return & i & return & return & (messages of tMailbox) & return & return & mList
    end tell

  • Received e-mail in Chinese character which I can't delete. It's crashing the mail app. What to do?

    Received e-mail in Chinese character which I can't delete. It's crashing the mail app. What to do?

    In addition to deleting the errant email from the email provider's web page (using a PC):
    1. Close the Mail app from Multitasking: Double-tap the Home button which will bring up the running apps icons (Multitasking) along with an app screenshot "card" above the icon. Tap-drag the icons left/right to find the particular app. Tap-drag the app's "card" (NOT the icon) up and off the screen.
    2. Wait about 30 seconds
    3. Reset the device:
    Device Reset (won't affect settings/data/music/apps/etc)
    1. Press and hold (& continue to hold) BOTH the Sleep/Wake button & the Home button.
    2. Continue to hold BOTH (ignoring any other messages that may show) until you see the Apple logo on the screen.
    3. Release BOTH buttons when you see the Apple logo and allow the device to boot normally.

  • Deleted mailbox in mail.app

    Hi,
    i current had a problem with my mail.app, where all the mailboxes got deleted from my mail.app. When i went to the preferences>accounts it didn't appear a single account there, and before i used to have 5 diff accounts logged on my mail.app.
    I just added the accounts again, and it went perfectly with my 3 gmails account, once that the main sever (gmail) kept all the emails in the inbox, and i was able to get everything back. But i am having a hard time to restore all my email from my 2 hotmails accounts. I seems that my hotmail sever was not keeping my emails in the inbox because once i logged in in the hotmail website, my inbox was clear, and all the emails were in the deleted folder. I had stuff from 3 years in my mail.app that i cant find, i was just able to recover until early october from the main sever.
    I do not have a time machine up to date, so getting a back up from it is not an option. I want to believe that when the mailboxes got deleted from the mail.app it didn't delete all my emails. So i would like to know if there is anyway i can recover somehow those emails, maybe after the deletion they moved somewhere in my mac, coz i already looked in the library>mail and is not there, just the current ones are there.
    I would appreciate any help.
    Thanks

    If you had mail saved on my mac, you can try going to your home folder>library>mail>mailboxes>select mailbox>messages, you will find find stuff in your envelope indexes. There might be some stuff there.  They will all be listed by an###. emlx so you will have to look thru them.  Hope this helps a little.

  • Accidentally deleted MobileMe mailbox in Mail.app 4 and now need to recover

    Here's what's up. Yesterday I accidentally deleted a mailbox on my MobileMe account. The one that has 30000+ messages in it form the past 3 years...
    Realizing how stupid that was I immediately made a copy on a safe place of the local cache on my computer. So now I have a copy of that entire mailbox in .imapmbox format. Today I have tried to find a solution to figure out how to get that email back into Mail.app and I fail to find a way.
    I have tried to make a bogus IMAP account and copy the mailbox to it but nothing happens, I have tried to import the email using the import tool in Mail.app but it can't recognize the filetype, I have tried to just copy the entire mailbox into the Mailboxes directory in my Library and then it actually appeared in the "On My Mac"-list as a mailbox but with no messages in it.
    I have use emlxtombox converter and that gave me some result but the attachments were omitted.
    What to do?

    Have you tried to import the mail box? You are trying to copy a back file into the mail app, it will not work as you found out. You should look into a way to backup your files.
    try the following:
    import mail box
    http://support.apple.com/kb/HT2442
    to restore
    http://docs.info.apple.com/article.html?path=Mail/4.0/en/15171.html

  • How to Recover Mailboxes After Mail.app Crashed?

    Hi,
    The battery in my MacBook Pro crashed my MBP: when it dipped to 25%, the MBP just shut off. In the process, Mail.app's preferences got corrupted, so that when I plugged the MBP in and restarted, Mail crashed at launch. I selected to re-launch it, which presumably makes the OS ditch the preference file, and indeed Mail.app was up and running - but only with my MobilMe IMAP account.
    Following an earlier thread on this forum, <http://discussions.apple.com/thread.jspa?messageID=7922931>, I recreated another IMAP account, and it sync'ed with the server.... but did not use the earlier files!
    To be clear: looking at things from within Mail.app, everything seems to be in order at first glance: both accounts are up and running, and the most recent e-mail I can remember is there, in both accounts. Therein lies the rub, however: I've kept about 7 years worth of e-mails, and there's no telling (at least not quickly) what's not there (viewing things from within Mail.app).
    So, I inspected ~/Library/Mail/ (all folder-names will refer to the ones within this one), and see that a brand new folder "IMAP-myname@server" got created for my second account, and this is what Mail.app is now using. Another detail (and that's where the devil is, usually): Originally, my 2nd account had the incoming mail server specified as "servername.domain", where "servername" was the actual name of the computer. Thus, Mail.app filed that into stuff the folder "[email protected]". Sometime in the past, the alias "mail.domain" was the recommended replacement, and I know I have so changed Mail.app's preferences, but the "[email protected]" folder was not renamed.
    By the same token, when I now re-created my 2nd account, I specified the server as "mail.domain", which caused Mail.app to create a brand new "[email protected]" folder.
    And... my ~/Library/Mail/ folder now contains two folders,
     1. (the old one) "[email protected]"
     2. (the new one) "[email protected]"
    Is there any way to merge these? Is there any need to do so?
    Presumably, whatever I downloaded to my MBP is in the "Mailboxes" folder and not in these? However, there are differences: for example, the "INBOX.imapbox/Messages" folder contains 121 "nnn.emlx" files within the new account folder structure, but 164 such files within the old account folder structure.
    Also, I have two other, POP accounts, and I'm now not sure what I should do about those.
    Finally, I do have Time-Machine backups, and this evening I'll be able restore everything to the status as of 6:00 am this morning, but that would delete the changes that occur as I am using Mail.app during the day.
    Any insights? suggestions?
    Thanks, Tristan

    Hi, Ernie:
    Um, yes, there was a "sent" mailbox, a "drafts" mailbox, a "junk" mailbox... Those migrated into the "on my Mac" section, under the name "Delivered", "Drafts (DotMac)" and "Junk (DotMac)" and similarly for the other IMAP account.
    But, my concern is with the multiple contents in the ~/Library/Mail/ folder, as I detailed in the original post. At some point, when I have the time, I'll try to disentangle the difference in the contents, and see if those things are vital or some long-forgotten useless, "lint in the bottom of the drawers".
    Until then, the newly-set up IMAP accounts work fine.
    As for the POP3 accounts, I'd think that only about a week's worth of messages are still on the server, and the rest is in the "on my Mac" section, which does not seem to be affected. So, except for mucking up the last week's worth of e-mails on the POP3 accounts, I should be fine to just recreate them.
    I suppose, after a while, when all's running well, I can safely remove the "old" content in the !/Library/Mail/ folder, pertaining to the "old" accounts, and which is not being accessed any more?
    Cheers, Tristan

  • IMAP option to not delete from server OR recommend alternate mail app?

    Using POP in Windows computer and IMAP on iphone.
    In the iphone, POP has the opton to "delete from server: never"
    There seems no way to accomplish this in the stock mail app when using IMAP ?
    Using POP on the iphone is not an option due to the longstanding issue of the Apple mail apps not sending a  proper termination signal back. The mailbox remains locked until the server times it out for inactivity and cleans up the stale lock after 10 minutes. The result is "wrong password" on the computer if it then tries to retrieve during that period. It's a feature of POP by design to use a lock to prevent corruption caused by simultaneous access to the mailbox. BUT, BB,Android,Windows all handle this correctly so that their POP transaction (and the mailbox lock) only lasts seconds! Only ever see this persistent lock with Apple mail clients
    The user likes to keep his phone inbox clean, he will delete messages as he deals with them as well as messages he is postponing to deal with on computer later.
    Moving messages to a 'later' folder won't help, as that 'later' folder will not be available thru POP (for the computer)
    They also don't want to use IMAP on the computer because they don't want their communications stored on the server any longer than necessary.
    Can anyone recommend:
    - Windows IMAP client which downloads all and keeps a local copy of inbox which does not synch with server inbox.
    - Alternate mail app for iphone which allows "delete from device only // never delete from server "

    That's not how IMAP works. If you want to keep the inbox clean, but not delete the messages, create folders and move the messages into them for later review.

  • Cannot edit outgoing SMTP server list in mail.app

    Did a fresh install of Snow Leopard on a new 13" Macbook Pro unibody and was trying to add an IMAP email account. After failing to connect, I was trying to specify the outgoing port and realized that I could not edit the outgoing SMTP server list.
    Steps to reproduce error:
    1. Open mail.app
    2. Go to Mail > Preferences
    3. Select "Accounts" tab and select any mail account
    4. Select "Account Information" tab and click Outgoing Mail Server (SMTP) drop down menu
    5. Select "Edit SMTP Server List..."
    After that point the instead of opening the list of servers with their settings, it simply returns to the "Account Information" screen. I'm a bit confused because I've never had this happen before in any other version of mail app. I cannot edit or delete any outgoing mail server accounts because of this. Any help will be much appreciated. Thank you for your time and consideration.

    This should not happen. Had you migrated back to the fresh install the Mail folder in User-Library? Or is this a clean setup? I would go to User-Library-Preferences, and drag the com.apple.mail.plist to the trash, then open Mail and try again.

  • How could you create 'Last Time Contacted' Smart Mailbox in Mail app Lion?

    Hello!
    For the purposes of maintaining regular contact with a large group of contacts in your address book:
    How could you create a smart mailbox in the Mail App (Lion) which contained that last unique sent/received email from each individual contact?
    So ideally just the last email per contact. For my purposes I would then sort by date and find the contacts I havent emailed in a while and re-initiate conversation.
    I also thought that perhaps it would be possible through Automator? (I am not very familiar with how to use this app)
    Any ideas/solutions would be very appreciated!
    nmarks
    (running lion 10.7.4 macbook pro late 2011)

    Okay, I think I just discoverd a workaround. This will work if you're lucky enough to already have a smart-mailbox folder that persists after close. (Somehow I had two such folders that already existed and weren't subject to the mysterious disappearances on closing the app; perhaps I created them in a previous OS X release?) Anyway, here goes:
    Locate an already existing smart mailbox folder that's working properly. Select the folder (in the sidebar).
    Duplicate that folder using the "Duplicate Smart Mailbox" Command. (It's on the contextual pop-up menu or available via the gear icon in the lower left of the window). This should produce and exact copy of the folder and the boxes inside, appearing at the bottom of the smart mailbox list.
    Edit the duplicate folder to put the smart mailboxes you want in it, and delete the previous mailboxes (duplicates) that you don't want.
    The new folder structure should now persist between launches of the app.
    There you go. Not the most elegant process, but workable. Don't know if there's a method if you don't have at least one smart mailbox folder already though.

  • Backup mailbox of mail.app

    Hello everyone,
    I would like to automate, with applescript, the back up a mailbox of mail, which is manually done with the menu "Export mailbox ...", but:
    I can not set the folder where the mailbox will be saved;
    I can not set the mailbox to export, it works only with the mailbox that I've previously selected manually with the following command: Click menu item...
    The lines of the script, which does not work, are:
    tell application "Finder"
      --set mboxSavePath to "HD Macintosh:Users:simonepiersigilli:Desktop:e-mail:" -incorrect command to set the save path-
      --set mboxSavePath to "/Users/simonepiersigilli/Desktop/e-mail/" -incorrect command to set the save path-
      --set path POSIX to mboxSavePath -incorrect command to set the save path-
    end tell
    tell application "Mail" to activate
    tell application "System Events"
      tell process "Mail"
      --click menu item "[email protected]" of menu "Entrata" of menu "Caselle" of menu bar 2 -wrong command to set the mailbox to export-
      click menu item "Esporta casella di posta…" of menu "Casella" of menu bar 1 -correct command to open the menu "Export mailbox ..."-
      -- Now click the Go (choose) button
      click button "Scegli" of sheet of front window -correct command to click the button choose-
      tell application "Mail" to close the front window
      end tell
    end tell
    Can anyone help me?
    Cesare

    Interesting! I was having trouble with two accounts. I had re-installed signatures for both before I read your post. I deleted the plist file and did a restart.
    Both signatures appeared when I opened "New Message." One showed the proper signatureon the page and in the signature box at the upper right of the new message page. The other account showed the correct signature, but the signature box at the upper right showed "None." I clicked on "None," and the signature on the page disappeared. This has happened before as well. ????

  • Some (not all) emails disappearing / deleting themselves from folders in the Mail app on iPhone 4S

    I am having an issue with some of my emails disappearing on my iPhone 4S and I am wondering if anyone else is experiencing similar issues and might offer a solution? I have three email accounts on my iPhone 4S and iPad 2 (of which include my iCloud @mac.com and Yahoo!) and all are set up as IMAP so that I can be sure both devices remain in sync at all times. The issue occurs when I go into any of my archive email folders, in any one of my three email accounts and let the iPhone sync with the server so that it is up-to-date. Sometimes - not everytime - I will watch as one of my most recent emails that is cached on the phone suddenly vanishes as it pulls down the rest of the emails archived in that folder. As soon as that email vanishes, it will then automatically remove it from the server (being that it is IMAP) and that email is then gone for good. It has not been moved to trash or any other folder because I can subsequently log into Yahoo! mail for instance and do a complete search for it and it won't find it at all. At first I thought it was my fat thumb (!!!) that had acidentally hit delete on the email but it is happening around twice a week and it has only happened since getting my iPhone 4S. I have contacted Apple support by phone and they suggested completely wiping the phone and restoring from backup, of which I have done. I have changed various settings such as showing 50 recent messages rather than 1000, turing on "organize messages by thread" and "ask before deleting" and trying that for a week but none of that has helped. I have a feeling this is an iOS5 issue rather than a hardware issue because my iPad 2 has started to do the same thing and it never did it before I upgraded to iOS5. Nor did my old iPhone 3GS that I had for two years. I am losing important emails and I'm getting to the stage of thinking about never opening the Mail app on either device for fear of losing any more important emails. I'm considering resorting to logging into Yahoo! and iCloud webmail via Safari instead which is a bit of a pain. Very sorry for the long message but thought i'd best be as thorough as possible. If any of you guys have had similar issues, or if you have any suggestions please feel free to chime in. Many thanks.

    Thanks to everyone for their replies - I thought that it was just me with this issue but clearly not. Also thank you to Mil_Prep and S2Linda's suggestions, unfortunately all three of my email accounts do not have a "Mail Days To Sync" option - I believe that this option only appears in Mail settings if the account is an exchange email account. Even if I was able to adjust the time period of emails to sync, I don't think that it would help because the email(s) that are going missing can be as recent as one day old, leaving all my earlier emails in the same folder intact - some of which can go back to the year 2002 for instance. I am still convinced that it is a bug with headers in iOS5. Last week I even had a related problem where I had a new email merge with an old email. The senders email address, subject title and date remained the same but the body of the text was replaced with an old email from 2006! Very odd....

Maybe you are looking for

  • Hide field based in process type - GS_CM Component

    Hello. Currently, we need to hide a field in GS_CM/AddDoc view of component GS_CM, because it have to be based on process_type. In CMBO node context, we have the object_type of the transaction (TYPEID attribute), but we need the process type to evalu

  • My phone is not charging when plugged onto the computer

    Hi guy my phone is not showing in itunes when plugged in, what could be the reason for this

  • Modify screen in VA41 : How to hide field in userexit_field_modification

    Hello, How to hide field at item level only (User should not be able to edit this field) in userexit_field_modification, instead of hiding the complete column. If I use FORM USEREXIT_FIELD_MODIFICATION. IF screen-name = 'RV45A-MABNR'. " Material SCRE

  • Installing SAP CRM 5.0 SR2 ABAP+JAVA on Windows:Oracle

    Hi, I want to start installation of the below Installing SAP CRM 5.0 SR2 ABAP+JAVA on Windows:Oracle will anyone please tell me the brief procedue or if you have any documents or snapshots other what is there in service market place please mail me to

  • Proxy keeps turning off

    In iPad2 the proxy settings keeps turning off eventhough i entered the settings couple of times and turned  on the authentication, i cannot conect to the internet with safari. Could you please advise a solution for this problem. Thanks Sam