Establishing multiple recipient group in Mail?

I need to establish a contact list for a large group of people to whom I will be sending out weekly emails. Is there a way to simply paste in all of the email addresses at once into the BCC field and then somehow set all of those recipients as a single 'group' that I can reuse again without having to repaste in all the addresses each time?
Alternatively, it appears that Apple Mail expects you to use your Address Book to establish email groups. Honestly, I would rather not have all of these people in my Address Book, since I don't even know most of them. But, in the event that using the Address Book is the only way to set up a multiple recipient group, is there a way to, again, paste in all of the addresses at once rather than having to edit each recipient separately? I only have the email addresses (no names or other info) in an Excel spreadsheet. I've tried importing via csv and that failed miserably.
Any suggests are welcome

Greetings,
Is there a way to simply paste in all of the email addresses at once into the BCC field and then somehow set all of those recipients as a single 'group'
Sorry, you can't do that.
Alternatively, it appears that Apple Mail expects you to use your Address Book to establish email groups.
True, since that's what Address Book is for; keeping your contacts readily available and organized.
But, in the event that using the Address Book is the only way to set up a multiple recipient group, is there a way to, again, paste in all of the addresses at once rather than having to edit each recipient separately?
Sorry, no. You need to create a contact for each of your intended members of the group, even if all you have is their email addrress. Then you can create a new group with whatever name you like and move those contacts to that group, which you can then select to send your email to when you're in Mail.

Similar Messages

  • How to send multiple Recipients using the mail.jar and activation.jar

    hi!
    could somebody help me. how do i send multiple Recipient using mail.jar. when i would input 2email address in to Recipient
    (example: [email protected], [email protected])
    i get a DEBUG: setDebug: JavaMail version 1.3.2
    but if i send a single email it just works properly.
    heres my code
    import java.io.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    public class SendMail
              public SendMail(String to, String from, String subject, String body)
              //public SendMail(String to)
                   String message_recip = to;
                   String message_subject = subject;
                   String message_cc = "";
                   String message_body = body;
                   //The JavaMail session object
                   Session session;
                   //The JavaMail message object
                   Message mesg;
                   // Pass info to the mail server as a Properties, since JavaMail (wisely) allows room for LOTS of properties...
                   Properties props = new Properties( );
                   // LAN must define the local SMTP server as "mailhost" to be able to send mail...
                   //props.put("mail.smtp.host","true");
                   props.put("mail.smtp.host", "mailhost");
                   // Create the Session object
                   session = Session.getDefaultInstance(props, null);
                   session.setDebug(true);
                   try
                        // create a message
                        mesg = new MimeMessage(session);
                        // From Address - this should come from a Properties...
                        mesg.setFrom(new InternetAddress(from));
                        // TO Address
                        InternetAddress toAddress = new InternetAddress(message_recip);
                        mesg.addRecipient(Message.RecipientType.TO, toAddress);
                        // CC Address
                        InternetAddress ccAddress = new InternetAddress(message_cc);
                        mesg.addRecipient(Message.RecipientType.CC, ccAddress);
                        // The Subject
                        mesg.setSubject(message_subject);
                        // Now the message body.
                        mesg.setText(message_body);
                        // XXX I18N: use setText(msgText.getText( ), charset)
                        // Finally, send the message!
                        Transport.send(mesg);
                   }//end of try
                   catch (MessagingException ex)
                        while ((ex = (MessagingException)ex.getNextException( )) != null)
                             ex.printStackTrace( );
                        }//end of while
              }//end of catch
         }//end of SendMail
    public static void main(String[] args)
              //String t = "[email protected], [email protected]"; - this I think causes error
    String t = "[email protected]";
              String f = "[email protected]";
              String s = "Hello World";
              String b = "the quick brown fox jumps over the lazy dog";
              SendMail sm = new SendMail(t,f,s,b);     
         }//end of main
    }//end of class
    could someone please help me im stuck-up with this. thanx!

    i need it ASAP
    i am a beginner in java and jsp
    Need to knw how can I parse the addresss field
    Below
    is the code
    <code>
    package
    public class EMailBean {
    private String smtp,username,password,from,bcc,subject,body,attachments,cc;
         /*setter*/
         public void setSmtp(String str){this.smtp=str;}
         public void setUsername(String str){this.username=str;}
         public void setPassword(String str){this.password=str;}
         public void setFrom(String str){this.from=str;}
         public void setTo(String str){this.to=str;}
         public void setCc(String str){this.cc=str;}
         public void setBcc(String str){this.bcc=str;}
         public void setSubject(String str){this.subject=str;}
         public void setBody(String str){this.body=str;}
         public void setAttachments(String str){this.attachments=str;}
                                  /*getter*/
         public String getSmtp( ){return this.smtp;}
         public String getUsername( ){return this.username;}
         public String getPassword( ){return this.password;}
         public String getFrom( ){return this.from;}
         public String getTo( ){return this.to;}
         public String getCc( ){return this.cc;}     
         public String getBcc( ){return this.bcc;}
         public String getSubject( ){return this.subject;}
         public String getBody( ){return this.body;}
    public String getAttachments( ){return this.attachments;}
    </code>
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(true);
    try {
    MimeMessage msg = new MimeMessage(session);
    msg.setFrom(new InternetAddress(mail.getFrom()));
                                  msg.addRecipients(Message.RecipientType.TO, InternetAddress.parse(to, false));
                                  msg.addRecipient(Message.RecipientType.TO,new InternetAddress(mail.getTo()));
                             msg.addRecipient(Message.RecipientType.CC, new InternetAddress(mail.getCc()));
                                  msg.addRecipient(Message.RecipientType.CC, new InternetAddress("[email protected]"));
    msg.setSubject(mail.getSubject());
    // Create the message part
    BodyPart messageBodyPart = new MimeBodyPart();
    // Fill the message
    messageBodyPart.setText(mail.getBody());
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    // Part two is attachment
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(mail.getAttachments());
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(source.getName());
    multipart.addBodyPart(messageBodyPart);
    msg.setContent(multipart);
    msg.setSentDate(new Date());
    Transport t = session.getTransport("smtp");
    try {
    t.connect(mail.getUsername(), mail.getPassword());
    t.sendMessage(msg, msg.getAllRecipients());
    } finally {
    t.close();
    result = result + "<FONT SIZE='4' COLOR='blue'><B>Success!</B>"+"<FONT SIZE='4' COLOR='black'> "+"<HR><FONT color='green'><B>Mail was successfully sent to </B></FONT>: "+mail.getTo()+"<BR>";
    if (!("".equals(mail.getCc())))
    result = result +"<FONT color='green'><B>CCed To </B></FONT>: "+mail.getCc()+"<BR>";
    if (!("".equals(mail.getBcc())))
    result = result +"<FONT color='green'><B>BCCed To </B></FONT>: "+mail.getBcc() ;
    result = result+"<BR><HR>";
    } catch (MessagingException mex) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+mex.toString()+"<BR><HR>";
    } catch (Exception e) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+e.toString()+"<BR><HR>";
    e.printStackTrace();
    finally {
    return result;
    }

  • How to select multiple recipients in iPad mail

    I have read that I can't create groups, but how to select multiple recipients in iPad mail?
    I was looking for this when setting up for two new people who are going to have the iPad as their only device.. and they do need to email a bunch of people at once..
    I was sending out the 'I have a new email address' BCC for them.
    Thanks.

    You can select multiple contacts by tapping on the + sign in the upper right corner in the To: field when you are typing a new email. Just keep tapping the + sign and your contacts will pop up in a window. Select the contact that you want to add, repeat the process in order to add as many recipients as you want.
    There are other mail apps that let you creat groups and email to those groups.
    https://itunes.apple.com/us/app/group-email!-mail-client-attachments/id380690305 ?l=es&mt=8
    https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    I am sure there are other, but those are two that I know of.

  • Multiple recipient email addresses is not working  for xsl & PDF Attachment

    multiple recipient email addresses is not working properly when
    to list has some external email address and sending xls and PDF file as an attachment.
    Test Scenario:
    (A) Create mail target activity
    1)To email : use the multiple email id with some external domain (ex.
    [email protected] ,[email protected], [email protected])
    2)File attachment with .xls file and this file is sending to mail target as an inputstream(at runtime)
    3)Use all other valid parameter in activity.
    (B) Create a process flow File source to mail target
    Execute the process flow.
    Actual Result: Mail is received by every email account. Only external email account get correct file but other email account(as ([email protected])) attachment files
    displaying message
    �abc.xls� can not be accessed. The file may be read-only, Or you may be
    trying to access a read only location. Or, the server the document is stored on
    may not be responding.�
    When i trying to open xls and PDF file
    Expected Result:
    All type of file attachments should be supported with all valid email address
    (servers).
    Pls help me about this senario:
    What is problem in this case:
    I am sending code
    Session session =getSession(host,port,secure);
    session.setDebug(this._debug);
                   Transport trans = connect(host,port,session,userID,password);
                   Message message = new MimeMessage(session);
                   InternetAddress[] iAddr = null;
                   message.setFrom(new InternetAddress(fromName));
                   iAddr = InternetAddress.parse(toUserName, true);
                   message.setRecipients(Message.RecipientType.TO, iAddr);
                   message.setSubject(subject);
                   //BodyPart messageBodyPart = new MimeBodyPart();
                   Multipart multipart = new MimeMultipart();
                   MimeBodyPart messageBodyPart=null;
    if(dataLocation!=null && dataLocation.equalsIgnoreCase("ATTACHMENT")){
                        String tmpName=fileName;
                        if( inputstream != null)
                                  tmpName = makeAttachment(fileName,inputstream);
                        messageBodyPart = new MimeBodyPart();
                        DataSource source = new FileDataSource(tmpName);
                        messageBodyPart.setDataHandler(new DataHandler(source));
                        fileName = fileName.replace('\\', '/');
                        fileName = fileName.substring(fileName.lastIndexOf('/') + 1,
                                  fileName.length());
                        messageBodyPart.setFileName(fileName);
                        multipart.addBodyPart(messageBodyPart);

    First, when sending your message, the filename should be a simple
    filename, not containing any directory names.
    It sounds like your mail server might be doing some special
    processing of attachments, perhaps to prevent viruses.

  • Need to know the event when an individual recipient is sent Mail

    i can successfully sent mail through Java Mail API to multiple recipients but on display i want to show end-user progress like
    " mail sent to recipient:ID (ith out of n recipients)"
    I want to know if any event is fired when an individual recipient is sent MAIL/Message after calling Transport.sendMessage
    I have looked TransportEvent but as per my knowledge that gets fired after finishing whole job.
    Regards,
    Nadia

    No, there's no such event.
    The way this normally works is that JavaMail sends the message to your mail server,
    along with the list of all the recipients. The mail server accepts it, queues it, and
    returns an acknowledgment to JavaMail and the connection with the mail server is
    closed. The mail server then goes about sending the message to the recipients.

  • Can I send group e-mails from an IPad?

    Can I send group e-mails from an IPad?

    Demo wrote:
    Not without a third party app. You can search for apps in the App Store that can email to groups. Here a couple of them.
    http://solubleapps.com/mailshot/
    http://www.redbits.com/iphone/groupemail/en/
    Actually, by tapping the , you can add multiple people.
    -Ethan

  • Send PO via email to multiple recipient

    Hi,
    We are using the standard output type NEU, medium 5 (external send).  But the standard PO process will send email to only 1 recipient.  The email will be taken from the vendor master where email is flagged as Standard.
    Is there any other way (or any user exit) to send PO to a multiple recipient (TO and COPY-TO)?  We are planning to maintain other email address from the contact persons address in vendor master.
    Appreciate your input.
    Thanks

    hi the following are the two scenarios defined plz look in
    Hi ,
    call the following function module in a loop and pass the values in the reciever list table with the no. of email ids and check the output .hope it works
    Creating the entry for the compressed document
    CLEAR gs_objpack-transf_bin.
    gs_objpack-head_start = 1.
    gs_objpack-head_num = 0.
    gs_objpack-body_start = 1.
    gs_objpack-body_num = gv_tab_lines.
    gs_objpack-doc_type = 'RAW'.
    APPEND gs_objpack TO gt_objpack.
    Entering names in the distribution list
    IF p_plist IS NOT INITIAL.
    gs_reclist-receiver = p_plist.
    gs_reclist-rec_type = gc_c.
    APPEND gs_reclist TO gt_reclist.
    CLEAR gs_reclist.
    ENDIF.
    Populating the reciever list
    gs_reclist-receiver = p_plist.
    gs_reclist-rec_type = gc_u.
    APPEND gs_reclist TO gt_reclist.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = gs_doc_chng
    put_in_outbox = gc_x
    commit_work = gc_x
    TABLES
    packing_list = gt_objpack
    object_header = gt_objhead
    contents_bin = gt_objbin
    contents_txt = gt_objtxt
    receivers = gt_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    operation_no_authorization = 4
    OTHERS = 99.
    CASE sy-subrc.
    WHEN 0.
    WRITE: 'eMail sent successfully'(005).
    WHEN OTHERS.
    WRITE: / 'eMail could not be sent'(008).
    ENDCASE.
    in order to change that u have to alter ur print program and use condition value of nacha ...on the other side u have to configure the nace output type and make the scot settings.
    for this use the following code.
    *& Form nacha_5
    Send the Form as an Email
    -->P_FOUND Flag 'X' if sub routine is found
    FORM nacha_5 USING write_out TYPE xfeld
    CHANGING p_found TYPE xfeld.
    DATA : lv_mail_id TYPE so_name,
    lv_mail_tp TYPE so_escape VALUE 'U',
    l_subrc TYPE sy-subrc.
    p_found = 'X'.
    Get the Mail ID from the Control Table
    lv_mail_id = t_ctrl_app-recipient.
    Create The Recipient Object
    CALL FUNCTION 'CREATE_RECIPIENT_OBJ_PPF'
    EXPORTING
    ip_mailaddr = lv_mail_id
    ip_type_id = lv_mail_tp
    IMPORTING
    ep_recipient_id = w_recipient
    EXCEPTIONS
    invalid_recipient = 1
    OTHERS = 2.
    IF sy-subrc NE 0.
    IF write_out = 'X'.
    FORMAT COLOR 6.
    WRITE AT /5 text-001.
    ENDIF.
    RAISE other.
    ENDIF.
    Create The Sender Object
    CALL FUNCTION 'CREATE_SENDER_OBJECT_PPF'
    EXPORTING
    ip_sender = sy-uname
    IMPORTING
    ep_sender_id = w_sender
    EXCEPTIONS
    invalid_sender = 1
    OTHERS = 2.
    IF sy-subrc NE 0.
    IF write_out = 'X'.
    FORMAT COLOR 6.
    WRITE AT /5 text-002.
    ENDIF.
    RAISE other.
    ENDIF.
    Populate the Control Data & Title
    w_sf_control-device = 'MAIL'.
    w_sf_control-no_dialog = 'X'.
    w_sf_control-langu = t_ctrl_app-spras.
    Nacha = 2
    Populate the Fax Number and the country.
    Data : lv_fax_tp TYPE so_escape VALUE 'F',
    lv_fax = t_ctrl_app-recipient.
    lv_land1 = t_ctrl_app-country.
    Create the Recipient Object
    CALL FUNCTION 'CREATE_RECIPIENT_OBJ_PPF'
    EXPORTING
    ip_country = lv_land1
    ip_faxno = lv_fax
    ip_type_id = lv_fax_tp
    IMPORTING
    ep_recipient_id = w_recipient
    EXCEPTIONS
    invalid_recipient = 1
    OTHERS = 2.
    IF sy-subrc NE 0.
    IF write_out = 'X'.
    FORMAT COLOR 6.
    WRITE AT /5 text-004.
    ENDIF.
    RAISE other.
    ENDIF.
    Create The Sender Object
    CALL FUNCTION 'CREATE_SENDER_OBJECT_PPF'
    EXPORTING
    ip_sender = sy-uname
    IMPORTING
    ep_sender_id = w_sender
    EXCEPTIONS
    invalid_sender = 1
    OTHERS = 2.
    IF sy-subrc NE 0.
    IF write_out = 'X'.
    FORMAT COLOR 6.
    WRITE AT /5 text-003.
    ENDIF.
    RAISE other.
    ENDIF.
    Populate the Control Data
    w_sf_control-device = 'TELEFAX'.
    w_sf_control-no_dialog = 'X'.
    w_sf_control-langu = t_ctrl_app-spras.
    Populate the Output Options.
    w_output_options-tdteleland = lv_land1.
    w_output_options-tdtelenum = lv_fax.
    w_output_options-faxformat = 'PS'.

  • VCenter Single Sign-On Permissions Assignment for Members of Multiple AD Groups

    Hi all,
    I ran across an interesting issue whilst assigning permissions using Active Directory groups within vCenter.
    Environment
    1 vCenter Appliance managing 2 Datacenters (1 Datacenter with 2 Clusters, 1 Cluster with 2 Hosts, 1 Cluster with 4 Hosts, 1 Datacenter with 1 Cluster containing 1 host.) 
    vCenter has an SSO Identity Source configured using Active Directory (Integrated Windows Authentication).
    vCenter and all hosts are domain members of child1.parent.com.au
    The Active Directory Forest contains a parent domain, let's call it parent.com.au, and two child domains child1.parent.com.au and child2.parent.com.au.
    Although the Identity Source was configured for my child domain, using child domain credentials it added the parent domain and subsequently both child domains. Okay, so there are trusts, I'm okay with this. The interesting issue is yet to come.
    Two Active Directory Groups were added. Deployment Admins A and Deployment Admins B.
    Two vCenter Roles were created with similar names. VM Deployers A and VM Deployers B
    Deployment Admins A was assigned the Deployers A role to Cluster A (Cluster, VM Folders, Datastore Folders)
    Deployment Admins B was assigned the Deployers B role to Cluster B (Cluster, VM Folders, Datastore Folders)
    Note: No objects overlap. All hosts, vms and datastores are isolated to each cluster.
    So the next step is assign an child1 AD User to the Deployment Admins A group. As expected the user using credentials child1\user can connect to vCenter via the VI Client and see all the relevant objects. Great!
    So now I assign the same child1 AD user to the second AD group Deployment Admins B. Now we wait and nothing happens. The permissions don't change. The user logs out and logs back in using the same credentials and still the permissions don't change.
    So I remove the user from both AD groups and get them to log out and in and sure enough they can't.
    This time I assign the child1\user account the roles as set out previously. So child1\user account is assigned to both roles in place of each AD Group. The expected behaviour is observed. As I add the second permission set, the objects become visible within the VI client.
    Okay so now I remove the explicitly assigned permissions and reassign via the groups and this time I ask the user to log in via the UPN ([email protected]). Whoa! It works.
    So it seems that assigning permissions for the same user in multiple AD groups across multiple roles can only be achieved when the user uses a UPN login to the VI Client.
    Has anybody else found this to be the case?
    If so, were you able to fix it?

    Hello,
    I have found this to be the case and think it is more due to SSO than AD. If you look at how you login as the 'administrator' when you first configure SSO it is in effect using UPN. I would raise this as a case to VMware and make sure they are aware of the issue. There are some issues with SSO being worked each day.
    Best regards,
    Edward L. Haletky
    VMware Communities User Moderator, VMware vExpert 2009, 2010, 2011,2012,2013,2014
    Author of the books 'VMWare ESX and ESXi in the Enterprise: Planning Deployment Virtualization Servers', Copyright 2011 Pearson Education. 'VMware vSphere and Virtual Infrastructure Security: Securing the Virtual Environment', Copyright 2009 Pearson Education.
    Virtualization and Cloud Security Analyst: The Virtualization Practice, LLC -- vSphere Upgrade Saga -- Virtualization Security Round Table Podcast

  • Multiple attachment in sender mail adapter with PI 7.11

    Hello all,
    I've got a scenario MAIL -> PI -> MAIL.
    In my sender adapter mail, i have two attachment.
    From what i've saw on different thread, it wasn't possible to handle this case in standard with PI 7.0.
    Is it possible now with PI 7.11 ? Or must i develop a specific module for that ?
    Thank you.

    Hi Jean ,
    I got the same issue too, the Scenario is MAIL ->FILE . Mail Sender Adapter picks up the 1 PDF attachment and saves in network folder successfully but not multiple attachments of a  mail.
    These are the setting in Module configuration I made:
    1. The IMAPS was used in Mail Sender Adapter : imaps://10.192.101.16:993/Inbox
    *IP address of the Mail Server was got from the Admin )
    2. Ports : 143, 993 are opened for the Mail Server to access for XI SERver ( Raised an Ticket to open Ports of Mail server :NZTxxx.dknz.nzcorp.net)
    3. As the attachment was only in PDF : Added swapbean in Module tab as below :
    Process Sequesnce :
    -Make sure: AF_Modules/PayloadSwapBean Modul key : TRANSFORM is added before sap.com/com.sap.aii.adapter.mail.app/XIMailAdapterBean
    -And under Module Configuration select : TRANSFORM as Module Key and add >
    swap.keyName Content-Disposition
    swap.keyName Content-Description
    swap.keyValue attachment;filename='MailAttachment-1.pdf"
    swap.keyValue MailAttachment-1
    -IF you get to know how to fetch multiple attachment , Please update.
    Thanks,
    Vara

  • Not able to set security group without mail enabled as site collection admin using powershell in sharepoint online site - office 365

    not able to set security group without mail enabled as site collection admin using powershell in sharepoint online site - office 365?
    Any idea?

    after few days test in my lab, I can see that only email enabled group can be added as site collection admin using POWERSHELL.
    hope this helps who stuck like me!! :-)

  • How to have multiple preference files for Mail on one computer

    I would like to have multiple preference files for Mail on one computer, one copy for each person in the organization. I want everybody to log in as the same user. Is this possible?
    Thanks,
    John Link
    Cube, 450 MHz, 640 MB   Mac OS X (10.3.9)  

    Since the Mail.app preference file (along with all other application preference files for a user account) is stored in that user's Home folder/directory, I don't believe this is possible.

  • One shared mailbox with multiple distribution groups connected and the sent items folder - how to configure?

    Hi!
    I have been struggling for a while now with the following issue.
    For starters:
    We are using exchange 2010 in combination with outlook 2013 on client computers.
    Cause of the limitations concerning the number of mailboxes in outlook im looking for a solution to receive and reply 
    to multiple aliasses. So i did the following:
    1. Configured one shared mailbox.
    2. Configured multiple distribution groups
    3.  made the shared mailbox a member of the distribution groups
    4. Configured full access and send as permissions for myself on the shared mailbox ( testing )
    5. Gave send as permissions to the shared mailbox in Active directory. 
    6.  Logged in to OWA to setup rules for the shared mailbox.
    I now receive emails from all connected distribution groups in the shared mailbox and also in the right folder.
    I do however have to select the proper from address when i reply to an email. 
    the email sent by the main SMTP of the shared mailbox is placed into the sent folder of the shared mailbox. 
    I setup the senddelagate blabla in register.....
    When i sent an email as one of the connected distribution groups it fails to put the sent item in the sent items folder of the shared mailbox. The email is sent using the proper address but placed in the sent folder of my main account. 
    I want this emails to end up in the sent items folder of the shared mailbox. Or even better, in a sent items folder for each of the addresses. 
    Any suggestions ? 
    Thanks in advance!

    Hi,
    As what
    Rajkumar says, sending as a shared mailbox(full access permission) will put the email in the sent item of shared mailbox. But it cannot be located in the “sent item” of a distribution group. Because
    it is a distribution group instead of a enabled user mailbox.
    According to your further description, I understand that the reason why you configure that is some users reached the
    limitation about the number of Exchange accounts you can include in the same Outlook profile. Is it rights? If I misunderstand, please point it out.
    By default, user can only add 10 Exchange accounts to the same profile. You can customize the limit to the number Exchange accounts in the same profile using the following registry data:
    Key: HKEY_CURRENT_USER\software\policies\Microsoft\exchange
    DWORD: MaxNumExchange
    Value: integer value starting at 1 (default = 10 if DWORD is missing)
    http://blogs.technet.com/b/outlooking/archive/2012/12/24/clarification-on-outlook-2010-and-additional-exchange-account-supportability.aspx
    Hope it helps.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Provisioning multiple AD Groups from a Single Privilege

    Experts,
    We're encountering a situation here when we provision to multiple Active Directory groups from a single IDM Role.
    The scenario is this:
    We have a workflow that has multiple conditional and switch tasks that result in the provisioning of users to Active Directory 2008 (mixed mode) Our workflow uses the provisioning framework and all users have been granted the ONLY privilege for the system.
    The workflow will result in adding the users to multiple AD groups sometimes two AD groups that are associated with a single IDM role. The first assignment always works, the second does simply does not occur, no entry in the system or job log although IDM does show that the role has been assigned with an 'OK' status.
    We've accomplished a workaround by redesigning the workflow so that only single roles are assigned at a time and using chain result OK links to move from one provisioning activity to another, but frankly, we are unsatisfied with this.  IDM should be handling this much better through
    I'm wondering if we have a pending value floating out there and we should just be applying the pending value at the end of every AD group add.
    Any thoughts on this would be appreciated.
    Thanks,
    Matt

    Matt,
    In your post you mention "I'm wondering if we have a pending value floating out there and we should just be applying the pending value at the end of every AD group add"... I'm faced with a similar issue were I'm left pending values for privileges after the group is assigned.
    I've imported the AD groups as privileges. I assign them without issue. But when I review the assignments I can see that each corresponding privilege assignment now has a pending value. I can not remove the privilege from the user at this point.
    Have you seen this before? Any suggestions on how I can clean this up. BTW, I'm using the SAP PF basically unchanged...
    Thanks!

  • How can I place calendars in multiple calendar groups?

    I would like to use a group for each of my family members but reference some of the same calendars from multiple calendar groups. Here is an example:
    Lets say I have a calendar for school, sport1, sport2, activity, family, and work
    I would like the groups to look like this:
    Me: family and work
    Wife: activity and family
    Son_1: school, sport1 and family
    Son_2: school, sport2 and family
    When a group is visible, that person can see the activities in which they participate. When several groups are visible, though, only single copies of shared events would appear and shared events would only have to be entered once.
    Is there a way to do this or do I need to place this on the feedback page?

    Bernd Alheit wrote:
    How can I place Windows Media Player in my PDF?
    Why want you the media player in a pdf file?
    e.g. pushing Mozart - button to listen to Mozart's music. But it must be a script not embedded player. Is it possible?

  • How to create a group in Mail?

    I don't know how to add names to a group. Mail has a list of all people who have e-mailed me but I can't see it to move names onto the group I wish to create.

    Note: if you add an email address to an Address Book member, and you do it by adding a second address called "home", and leave the first one "work" empty, smart mail box won't pick it up, and you'll wonder what's wrong.  If the person has only one email address, make sure there is no empty email address item above it so the smart mailbox will find it.
    Example: (wrong)
               work       Email
    -          home jsmith(a)nothere.com
    Example: (correct)
    -          home jsmit(a)nothere.com
    Also: Apple Mail lets your select "Sender is member of Group", to say "Family", but there are no HELP items in MAIL help that discuss or point you to the Address book to deal with groups.
    Message was edited by: Silly Robot

Maybe you are looking for

  • Preview Mail attachment

    Is there a way to see an image preview when attaching? I thought I saw it before but now it's an icon. 10.3.9 Thanks. Sorry, I just noticed this is Tiger Dual 2.3/G5 23" Display Mac OS X (10.4.5) 4.5 G RAM

  • Clearing digital signatures

    Hope someone can help. I've used the digital signatures tool under Tools/Forms menu to add sgnature fields for our firm and our clients to sign. What I want is to be able to lock those signatures once they are signed. I have gone to the Properties of

  • How to get the file name from directory

    Hi, I have a directory called test inside i have only one .txt file. i dont know that file name. Is it possible get the file name using PL/SQl code. ??? Using that .txt file i have to create a dynamic table. If i have use *.txt also not working Anyon

  • Rows with different background color in array

    I am displaying an array indicator. When certain values are found in a row of the array, I would like the row to have a different background color so that it stands out on the front panel. Can this be done? Especially, can this be done using property

  • All entrees in the calendar of my iphone4 have vanished and I cannot retrieve or re-enter them. How can I recover the use of my calendar?

    The calendar on my iphone lost its content and will not accept new entrees. I do not know what caused this malfunction. I want to know how to either regain the lost entrees and/or how to make news entrees.