Merge Mail Account for duplicate account Mailman

Hi,
The situation I have is that a user listed only once in Workgroup Manager is listed twice in Mailman. I'm not really sure how this happened, but one account is linked to a newly created mail account. However most of the mail is in the other mail account. Is it possible to merge the disconnected mailbox into the active one? If not can I create a new user account and link the disconnected mailbox to the new user? How would I set the necessary permissions? From here I could use Mail (client) to get at the emails.
Any help would be greatly appreciated.
Mark

Many thanks to Apple Enterprise Tech Support.
The access control list for mail was not set to all users and groups.
To fix:
(1) In Server Admin, select the server.
(2) Select the 'Access' panel.
(3) Select the 'Mail' service'
(4) Set the radio button to 'Allow all users and groups'.
Previously I'd had mail restricted to 'only users and groups below'.

Similar Messages

  • How Can I Turn OFF Junk Mail Filter for IMAP Accounts Only?

    I am trying to figure out how to turn off the Junk Mail filtering for IMAP accounts such as .Mac/.ME and GMAIL. All filtering is working fine on the server side, and reviewing the mail that is tagged is easy enough by just going to the account and displaying the folders created on the server.
    I've checked the Junk mail pref and although the Advance settings let you isolate specific accounts to check, it does not give you the option bypass checking an account.
    i.e.
    if <Any> of the following conditions are met:
    <Account> <is not> <Gmail (IMAP)>
    As is, the mail rules are working perfectly on the server side, but in Apple Mail, many mails are being sent the Apple Mail's Junk folder.
    When going through the Gmail's instructions on setting up a Gmail account for Apple Mail, it specifically says to turn off Junk mail filtering for the account, but I can't find any options to do that.
    Any help or suggestions would be greatly appreciated.
    TIA

    I haven't tried this, but it should work:
    Make a new rule,
    If <Any> <Account> is <Gmail> or <Account> is <.me> then "Stop evaluating rules".
    Move this rule to the last in the list of rules.
    In the Junk Mail preferences, be sure that "Filter junk mail before applying my rules" is unchecked.

  • Mutliple accounts: download new mails only for certain accounts

    i have setup mail to have a few accounts. i can disable accounts in the preferences, but then they are not any longer shown in mail.
    when i now open mail, all new mails from all accounts are retrieved. how can i have mail only download new mail for one (certain) account. maybe to trigger the download by hand? or have mail configured to download mails automatically for one account and manually for the others.
    it is very anoying, when opening mail, that all accounts are processed. this takes time especially on a weak and slow internet connection, it also costs download traffic. i want to manually trigger the "get new mails" for accounts.
    markus

    thats not the point: i don't want the automatic push in the backround. setting "manual" only means: that the mails are retrieved when mail.app is openend. this is not what i want. i want to open mail.app and then choose which mails/accounts being retrieved!

  • How to get all GL accounts for each account in a given bank...

    Hello Experts,
    Is there a way to get all GL accounts for each account in a given house bank?
    IN our company, there are 5 GL accounts for each bank so 1 GL for 1 account. they are for recon, payables,
    receivables, etc. I checked table T012K but it only shows the main GL account. Hope you
    can help me guys. Thank you and take care!

    Try this.. it is based on company code
    here it_cocodes is an internal table containing company codes
      DATA: BEGIN OF it_glaccount OCCURS 0,
        bukrs TYPE bukrs,
        saknr TYPE saknr,
        txt50 TYPE txt50_skat,
       END OF it_glaccount.
      DATA it_glaccount_wa LIKE it_glaccount.
    LOOP AT it_cocodes INTO it_cocodes_wa WHERE ktopl <> ''.
        SELECT bukrs saknr FROM skb1
          INTO CORRESPONDING FIELDS OF it_glaccount_wa
          WHERE bukrs = it_cocodes_wa-bukrs.
          IF sy-subrc = 0.
            SELECT SINGLE txt50 FROM skat INTO it_glaccount_wa-txt50
              WHERE spras = 'E' AND ktopl = it_cocodes_wa-ktopl
              AND saknr = it_glaccount_wa-saknr.
            APPEND it_glaccount_wa TO it_glaccount.
            CLEAR it_glaccount_wa-txt50.
          ENDIF.
        ENDSELECT.
    loop at it_glaccount into it_glaccount_wa.
    write:/....
    endloop.
    refresh...
    clear...
    endloop.

  • Enabling alternate account for specific accounts

    Hi all,
    Because of a project requirement we are to map two accounts (say A, B) with alternate accounts (say A1,A2,A3 with A and say B1,B2B3 with B). Currently alternate accounts are not used in production. In test environments we enabled alternate account at 'Installation Options' and 'Ledger for a unit' definition. Created alt accounts and mapped with accounts.
    On the basis of account alt account combination tax applicable is calculated.
    When we edit the journal in GL now, it gives error "The mapping between Account and AltAcct is invalid." for any journal line containig accounts other than A or B. Is therer any way by which we can avoid this error for journal lines containing accounts A or B. Or to validate the journal.
    Otherwise if we have say 700 accounts in all in production, then creating alternate account for each account and mapping and analyzing the impact of the same gets beyond the scope of the project. Please help or suggest with any ideas.
    Thanks in anticipation
    Rohan
    [email protected]

    Check below link. It may helpful to u
    PIA: PeopleTools 8.5x Timeout Settings - Guidelines for Setting Timeout Values and Troubleshooting Timeout-Related Issues [ID 1470518.1]

  • Offset Account for Freight Account

    Hello folks,
    In transaction type window, I can see GL account for Freight account. I would like to know where can I see the offset account for Freight account.
    Pls advice me.
    Thanks, Raghu.K

    Not sure what you are looking for, but if the invoice has Frieght accounting, offset account will be Receivable account which you can find in the transaction type window as well.
    In simple advance invoice, Receivables account Dr and rest of the accounts Cr.
    Thanks
    Nagamohan

  • Read  the email using java mail api for Imap account which is secured SSL

    hello,
    I am trying read the new mails on my imap account... i am not able to connect to the imap account... could anyone help me out ..
    below is the code
    public class EmailImapGateway implements MessageCountListener{
    private static final long serialVersionUID = 1L;
         private Session session = null;
         private IMAPStore store = null;
         private IMAPFolder folder = null;
         Properties props = new Properties();
         public void ejbCreate() {
         try {
         if (session == null)
              session = Session.getDefaultInstance(props, null);
              if (store == null || !store.isConnected()) {
    String host, name, passwd;
         host = "host";
              name = "user";
              passwd = "passwd";
              String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
              props.setProperty("mail.imap.socketFactory.class", SSL_FACTORY);
              props.setProperty("mail.imap.socketFactory.fallback", "false");
              props.setProperty("mail.imap.socketFactory.port", "888");
              java.security.Security.setProperty( "ssl.SocketFactory.provider", SSL_FACTORY);
              props.put("mail.imap.host", host);
              props.put("mail.imap.port", "888");
              store = (IMAPStore) session.getStore("imap");
              store.connect();
              folder = (IMAPFolder) store.getFolder("Inbox");
              folder.open(Folder.READ_WRITE);
              int t = folder.getUnreadMessageCount();
              System.out.println("getunreadmessagecount is :" + t);
    }catch (Exception e) {
              e.printStackTrace();
         } finally {
              try {
                   folder.close(true);
                   store.close();
              } catch (MessagingException e) {
                   e.printStackTrace();
         public void ejbActivate() throws EJBException, RemoteException {
              // TODO Auto-generated method stub
         public void ejbPassivate() throws EJBException, RemoteException {
              // TODO Auto-generated method stub
         public void ejbRemove() {
              // TODO Auto-generated method stub
         public void messagesAdded(MessageCountEvent arg0) {
              System.out.println("Message is added in inbox");
         public void messagesRemoved(MessageCountEvent arg0) {
              System.out.println("Message is removed from inbox");
    it is not able to connect to my account
    Edited by: bhavna84 on Sep 8, 2008 11:10 PM
    Edited by: bhavna84 on Sep 8, 2008 11:20 PM

    Yes, see my previous post.
    He replied:
    hello
    In your code ur mention IMAP port 888
    but by default its 143 so chk your server configuration for IMAP port no.

  • Itunes account for sub account not allowed?

    I'm trying to open a new itunes account for my daughter who has a sub account from our .Me "Family Pack". So far, I have been denied completing the sign up process. The error message is: "We are experiencing technical difficulties. Please try again later". Does this mean sub accounts in a .Me "Family Pack" can not own individual itunes accounts? Does it mean one itunes account must be shared among all "Family Pack" members? If so, this seems very limiting for itunes business and not a good incentive for buying the .Me Family Pack. Can someone tell me if this is true or how Family Pack sub accounts can open their own itunes account. Thanks

    If you want them to have access to songs and videos, even free ones, you will need to provide some sort of payment method to set up the account, if not a credit card than a prepaid iTunes card or gift certificate. Apple uses this as verification of the user's country of residence, something the content owners require of them.
    If you only want your users to have access to free songs, you can set them up an account using your credit card, then remove the credit card information from the account. Then they will only be able to download free songs and videos, though if they attempt to purchase something that has a cost, it may allow the purchase, create a balance due, and "clog" up the works until the item is paid for in some way.
    Regards.

  • Clearing accounts for Bank account

    I understand the concept of maintaining clearing accounts for Bank a/cs. But i dont know how to create them. Is there any spl procedure for that or is it similar to GL creation using FS00. Please guide me...
    Thanks in advance
    Choudary KV

    Hi,
    it is just like anyother account. please don't forget to create it as an open item managed account
    Assign points if useful
    Sunoj

  • AR - How to split receivable account for several accounts.

    Has enyone know how to split Receivable account for transaction in distribution window on 3 diffrent accounts
    eg.
    Total amount for transaction line is 5000
    I have to create accounting as follow:
    1st Receivable account Dt: 2000
    2nd Receivable account Dt: 2000
    3rd Receivable account Dt: 1000
    1st Revenue account Ct: 500
    2nd Revenue account Ct: 1000
    3rd Revenue account Ct: 3500

    Hi
    This could be possible in R12 using SLA (Sub Ledger Accounting) and not in previous versions
    Regards
    Sivakumar

  • Creating management accounts for protected accounts and groups in Active Directory

    I'm following step-by-step instruction for creating management accounts for protected groups that I found in Microsoft book "Best Practise for Securing Active Directory", published april 2013.
    What is confusing me is the "Enabling management accounts to modify the membership of protected groups" step. When I use DSACLS command:
    Dsacls "CN=AdminSDHolder,CN=System,DC=MyDomain,DC=com"/G
    [email protected]:RPWP;member
    what I have to type insted of "member".
    When I use previous command with simple "member" at the end I dont get this:
    Verify that the account has been granted only Read Members and
    Write Members permissions on the DA group, and click OK.
    My account have flag on all properties.
    I hope You understand me.

    The last field is for the attribute to delegate. You can read about it here: https://technet.microsoft.com/en-us/library/cc772662%28v=ws.10%29.aspx
    You can also refer to this for updating AdminSDHolder container: http://social.technet.microsoft.com/wiki/contents/articles/22331.adminsdholder-protected-groups-and-security-descriptor-propagator.aspx
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Trying to set up email account for sub account

    I have been trying to set up an email account for a sub account through verizon message center all day with no luck.  It won't let me past the first screen.  Any ideas?

    Mechrissy2 wrote:
    I have been trying to set up an email account for a sub account through verizon message center all day with no luck.  It won't let me past the first screen.  Any ideas?
    Are you getting some kind of error? This is a peer-to-peer support board, so the more information you give us to work with, the better. (Not personal information like username or password, though.)
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Sent messages in Mail.app for IMAP accounts

    I just converted my email POP accounts to IMAP.  With POP, everything is stored on your computer, right?  With IMAP, all the sent messages are stored on the server, and stay there forever if you specify it.  But are the sent messages also stored on the computer in the user library?  I am using Yosemite OS.

    But are the sent messages also stored on the computer
    Yes. The copies on your computer will be synched to match the copies on the server. If you disconnect your Mac from the Internet, you will still be able to view the mail prior to the disconnection. It's one of the main advantages that IMAP has over POP.
    Note that there are behavior options for the Sent mail folder that change the retention levels:

  • You Can't Create A Mail Folder For POP Accounts?

    I can't believe that I am unable to create a folder for a POP email account so that I can file and manage my email on the iPhone 3g! Which rocket scientist at Apple made this decision? What happend to the "manage email on iPhone" Use Case?
    So, how do i use the iPhone for email if all i can do is load the last 200 emails into the inbox?

    You cannot have POP3 mailboxes on the iPhone. You can have IMAP mailboxes but you must create them on another client such as your desktop.
    Even if you could create POP3 mailboxes there would be no way to sync them with your desktop. the POP3 protocol does not support mailboxes; it was developed at a time when having mail on your desktop was unusual, and no one at the time ever thought you would have more than one computer to read mail with.
    One workaround is to get a free gmail account and set it to read your ISP mail. You can then set up the iPhone to sync with gmail via IMAP.

  • Use mail app for POP account only?

    This may be a stupid question, but my .mac trial has recently expired, and I do not wish to pay for an entire .mac account because I only enjoy using the e-mail portion of it. I have set up my gmail account so that the e-mail gets forwarded to my mail, but is there any way to send e-mails from my mail application using my POP account now that my .mac is expired?

    I'm not sure I understand you rquestions - It sounds like you want to discontinue your .Mac account but continue to use your .Mac email - I do not believe that that is an option
    If you are switching to gmail (or for that matter adding gmail) you can set up Apple Mail to handle your gmail account either as a POP account ( http://mail.google.com/support/bin/answer.py?answer=13275&topic=12810 ) or an IMAP account ( http://mail.google.com/support/bin/answer.py?answer=81379&topic=1281 ) - gmail help has instructions for this set up and many others as well - a great place to look
    Larry Nebel
    Message was edited by: LarryHN

Maybe you are looking for

  • SPAM error while applying ABAP patch 13

    Hi all, I was applying patches on neweaver system Windows oracle platform. All patches till now successfully applied except patch 13 for ABAP and now situation is spam is running from alomost 24 Hrs and  i have also tried to restart the same but all

  • TV is messed up?

    When i turn on my tv it will start normally for maybe a minute and then automatically turn black any reasons why this is happening?

  • Do not use the Restore from Backup when upgrading

    For those having issues...... Try to restore your phone as "New" and not from a backup. After you have a clean version iOS 4.0 on your phone customize your phone manually, do not use a backup. i know this can be a pain in the *** but it should fix mo

  • JAAS requiring re-authentication when returning from external site.

    Our Struts web application uses another application for some of its functionality. When the authenticated user clicks on the link, a cookie is set with some user info and the user is redirected to the external site. The user interacts with the extern

  • Why do I get txt from my email address

    MMy son and I share an email for our iPhone 5c when he txt me I someti get 2 one from my email address and one from my number but not from his.  People have told me when I send a message it sometimes shows up as my email also and ask me who I am caus