Create Group Email Account in OIM

Hi,
I have a requirement to create Group Email Account in AD from OIM. I am able to create Group Accounts in AD using the OOB Resource Object "AD Group". Though I am not sure how to mail enable the group Account from OIM. Please give me ur valuable suggestions.
Regards,
Srijan.

What you basically need to do is to set the mailnickname attribute on the group object in AD.
I don't think that you can get the 9.1 AD connector to do this but it is not that hard to create a custom connector to do this.
If you don't have experience of JNDI I could change some code I built a while ago to do this. Contact me through LinkedIn if you are interested.
Best regards
/Martin

Similar Messages

  • How do i create an email account

    How do I create an email account on my new macbook pro?

    Do you have an email ISP or an online email account such as GMail? Before you can create a Mail account on the computer you need to have the information provided by your email ISP to enter into the email application: your email address, .e.g., [email protected]; your email provider's SMTP server address, .e.g., smtp.server.com; the POP or IMAP mail server address, e.g., mail.server.com. You will also need your username and password for accessing your mail account.
    In many cases whoever provides your email service will have a help page showing you what to do to configure Mail on the Mac.

  • I am trying to create another email account with talk talk. and I keep getting a failed message saying 'mail could not log into the mail server talk talk. Yet I already have another email account with talk talk. Not sure what I am doing wrong

    I am trying to create another email account with Talktalk. I already have one account.
    I try to input the new email address and password and get a failed message
    'Mail could not lot into the mail server talktalk.net.
    I have tried several times and keep getting the same message.
    Any ideas

    Accessing your emails from any computer connected to the Internet or from a Smart phone should be straightforward.
    For help on how to set up your e-mail on some of the most common software applications and devices, see How do I set up my TalkTalk email?
    If your software application or device isn't listed, all you need to connect to your TalkTalk e-mail mailbox are the TalkTalk e-mail settings. Make sure you use the right email settings for your specific email address.
    TalkTalk email addresses only
    Login / Username
    [email protected]
    [email protected]
    Incoming mail server
    mail.talktalk.net
    mail.talktalk.net
    Incoming Port
    110
    143
    Outgoing mail server
    smtp.talktalk.net
    smtp.talktalk.net
    Outgoing Port
    587
    587
    Outgoing SSL
    Yes
    Yes
    Outgoing Authentication
    Yes
    Yes

  • I can not create an email account for my client

    I have created an email account ([email protected]) and it is sending snd recieving messages. However when I try to create an address ([email protected]) me client could not log in to the webmail. I deleted the account and re-created the address with my email as the recovery. My thinking was I would set up the email and confirm everything is working and then show the client how to reset the password. Now it I can not get the BC admin panle to send an invite email yo me. Please advise. Client is passed mad on this. I have to resolve this issue.

    When I try to set up the [email protected] email account in the BC admin panle it repeatedly continues to change the password recovery email to [email protected] no matter how I set it up. This doesn't make any sense.  We can get into that account to even set a user password.

  • At the very end of creating an email account the program asks for a software security device password, I have no idea what this is or where to find it.

    At the very end of creating an email account the program asks for a software security device password, I have no idea what this is or where to find it. To my knowledge I don't have a "software security device". I am using Windows 7 on an IMac.

    What is the exact prompt or error message you get?

  • Can't create new email account.

    I can't create new emails account because when I go to Setting and click in Mail,Contacts ,calender, it goes back to home, intead of open the options. Any advice? Thanks
    Julio

    Double tab the home button and when the application button shows up hold the settings icon until you see a red dot in the corner and hit that.
    If that dosent work then try restarting the device. Hold the lock button (top right of iPad) until slide to power off appears then hit the same button to get it back on.
    To actually make an email account you have to go to the providers web page, you can't create one in settings

  • Can I create another email account?

    Hi
    Can you let me know if it's possible to create another email account in me.com or now cloud.com email sevice?
    Thanks

    Welcome to the Apple Community.
    You can create another account and hence another e-mail address, if that is what you are asking.

  • Missed one letter at the time of creating account for icloud. how do i fix or create another email account?

    Missed one letter at the time of creating account for icloud. how do i fix or create another email account?

    Hi jtv123,
    Could you please tell us exactly what happens when you try to set up your account?
    With kind regards,
    David

  • How to enable group email accounts

    Hi all,
    I have spent a while fiddling with (and breaking) my OSX Lion 10.7.4 Server install trying to get group emails working. I would just like to share how I did it.
    Follow the below how to.
    #!/bin/bash
    # Group EMail Enabler v0.2
    # Jeff Johnson <[email protected]>
    # Tested with OS X Server 10.6 and 10.7
    # Should also work with 10.5
    # This script allows you to manage email groups using Work Group Manager.
    # If you create an executive group in WGM, you then have a executive@ email address
    # This is automatically maintained as you adjust the members
    # The script searches your LDAP groups for the word 'mail' in the comment field
    # You must add mail to the comment field for any group which should have an email address.
    # The email address for that group will be the shortname of that group.
    # If you miss this step (add 'mail' to the comment field), this script does nothing.
    # Known issues
    # 1. Only supports groups in LDAP, users can be in LDAP or Local
    # 2. Does not support other groups within your email group (no nested groups)
    # 3. Almost no error checking, so best to run it manually a few times to check results.
    # Installation Instructions
    # 1. Save this file as
    #       /usr/sbin/group_email.sh
    # 2. Then adjust permissions
    #       sudo chmod +x /usr/sbin/group_email.sh
    # 3. Modifiy alias_maps in /etc/postfix/main.cf
    #    You need to add this line to what you already have
    #        hash:/etc/postfix/group_aliases
    #     Example, you have:
    #        alias_maps = hash:/etc/aliases
    #     Change to:
    #        alias_maps = hash:/etc/aliases, hash:/etc/postfix/group_aliases
    # 4. To run automatically every 5 minutes, I prefer a simple addition to /etc/crontab
    #      you may need to create /etc/crontab if it doesn't exist
    #      Add the following to /etc/crontab
    #            */5 * * * * root /usr/sbin/group_email.sh >> /dev/null 2>&1
    # If you followed these instructions, within 5 minutes you will see an alias file at
    #  /etc/postfix/groupaliases
    # you can inspect the file to confirm the results.
    cd /etc/postfix
    # clear current aliases
    echo "" > group_aliases.tmp
    # Get list of groups with 'mail' in the comment field
    gr=`dscl /LDAPv3/127.0.0.1 -list /Groups Comment | grep mail | awk '{print $1}'`
    for group in $gr
       do
          echo $group: `dscl /LDAPv3/127.0.0.1 -read /Groups/$group dsAttrTypeNative:memberUid | cut -d : -f 3 | grep -v "No such key"` >> group_aliases.tmp
       done
    cmp -s group_aliases.tmp group_aliases > /dev/null
       if [ $? -eq 1 ]; then
          echo different
          cp group_aliases.tmp group_aliases
          /usr/sbin/postalias /etc/postfix/group_aliases
          /usr/bin/newaliases
       else
          echo same
       fi
    exit
    The only additional thing I had to do with Lion Server 10.7.4 was add hash:/etc/postfix/group_aliases to the alias_maps AND alias_database in /etc/postfix/main.cf then run "newaliases" and "postfix reload"
    Hopefully this helps the next person to get it all running quicker than I did
    Cheers
    Ryan

    Hi Ryan, yeah 10.7.4 Lion Server - mail is swtiched on although we haven'y migrated to it yet (i do have the accounts setup though)
    Script:
    #!/bin/bash
    # Group EMail Enabler v0.2
    # Jeff Johnson <[email protected]>
    # Tested with OS X Server 10.6 and 10.7
    # Should also work with 10.5
    # This script allows you to manage email groups using Work Group Manager.
    # If you create an executive group in WGM, you then have a executive@ email address
    # This is automatically maintained as you adjust the members
    # The script searches your LDAP groups for the word 'mail' in the comment field
    # You must add mail to the comment field for any group which should have an email address.
    # The email address for that group will be the shortname of that group.
    # If you miss this step (add 'mail' to the comment field), this script does nothing.
    # Known issues
    # 1. Only supports groups in LDAP, users can be in LDAP or Local
    # 2. Does not support other groups within your email group (no nested groups)
    # 3. Almost no error checking, so best to run it manually a few times to check results.
    # Installation Instructions
    # 1. Save this file as
    #       /usr/sbin/group_email.sh
    # 2. Then adjust permissions
    #       sudo chmod +x /usr/sbin/group_email.sh
    # 3. Modifiy alias_maps in /etc/postfix/main.cf
    #    You need to add this line to what you already have
    #        hash:/etc/postfix/group_aliases
    #     Example, you have:
    #        alias_maps = hash:/etc/aliases
    #     Change to:
    #        alias_maps = hash:/etc/aliases, hash:/etc/postfix/group_aliases
    # 4. To run automatically every 5 minutes, I prefer a simple addition to /etc/crontab
    #      you may need to create /etc/crontab if it doesn't exist
    #      Add the following to /etc/crontab
    #                 */5 * * * * root /usr/sbin/group_email.sh >> /dev/null 2>&1
    # If you followed these instructions, within 5 minutes you will see an alias file at
    #  /etc/postfix/groupaliases
    # you can inspect the file to confirm the results.
    cd /etc/postfix
    # clear current aliases
    echo "" > group_aliases.tmp
    # Get list of groups with 'mail' in the comment field
    gr=`dscl /LDAPv3/127.0.0.1 -list /Groups Comment | grep mail | awk '{print $1}'`
    for group in $gr
       do
          echo $group: `dscl /LDAPv3/127.0.0.1 -read /Groups/$group dsAttrTypeNative:memberUid | cut -d : -f 3 | grep -v "No such key"` >> group_aliases.tmp
       done
    cmp -s group_aliases.tmp group_aliases > /dev/null
       if [ $? -eq 1 ]; then
          echo different
          cp group_aliases.tmp group_aliases
          /usr/sbin/postalias /etc/postfix/group_aliases
          /usr/bin/newaliases
       else
          echo same
       fi
    exit
    I've gone through it a few times and can't see any differences to the one you posted so am at a loss as to why its not working..
    Thanks
    Phil

  • I can't create an email account in Outlook 2013 for my exchange server

    Have tried many things on this issue.
    I have a new tablet PC running Windows 8. I am able to connect to my Exchange Server account using Windows 8 Mail, no problem but when I have tried to set up an account for Outlook 2013 to connect to the same Exchange Server using exactly the same login
    information I cannot get it to connect. I simply get the message that the Exchange Server is unavailable.
    I've been able to connect a variety of other devices to the same Exchange Server account without any problem - iPhones, Windows Phone, iPads, etc, etc all without problem. It's just this device and Outlook 2013 seems to be the issue. From checking various
    forums seems this is not an isolated issue but I've not been able to find a useful solution so far. Have deleted the user profiles and .ost files, switched off caching etc, all to no avail.
    One key difference between the account information required by Windows Mail and Outlook is that in the Windows Mail system I am prompted to enter my domain information. I know this is critical from the information provided to me by our network administration
    team but there is nowhere in the Outlook account setup process where I can enter my domain info.
    Closest I've been able to get to success is to use the manual account creation process and select the Exchange ActiveSync option - this gets me to the point where I'm prompted for my username and password info but it fails at this step because I am connected
    to a local domain (the domain account for the PC) and my user name and password are not accepted. There is nowhere in this login process that I can find where I can enter the correct domain info.
    Any ideas on a solution would be very much appreciated - I use Outlook extensively in my work and whilst the Windows 8 Mail system is good, it doesn't have the level of functionality I need.
    Many thanks
    Wayne.

    Have managed to solve this with your help Martina regarding using the domain\username combination.
    Here's the solution in detail in case anyone else is having similar problems.
    From control panels - select the User Accounts and Family Safety item, then the Mail (Microsoft Outlook 2013) item and then the Email Accounts option.
    Select the Email tab and click 'New... button to create a new email account
    Choose the standard Email account option in the following form. (Not the 'Manual' option'
    Enter your Exchange account details - no alterations necessary here. just your standard details.
    As the account verification proceeds you are prompted to again enter your username and password details. In this form, instead of using the top option with your username already populated, click the lower 'Other user' option and enter your domain\username
    details. This changes the domain. Enter your password as usual.
    I was prompted to do this twice - same each time. Enter domain\username in the username field and usual password
    Account is then created.
    Open Outlook to complete the process and synchronise data with Exchange.
    Hope this is helpful to others - again, many thanks for your assistance Martina.
    Wayne.

  • How to create an email account??

    Hi,
    How to create a new email account by using Java program.
    I'm able to send and receive the mails to and from an
    existing account by using JavaMail.
    But I dont know how to create an account.
    Please help me...
    thanks in advance

    hi,
    I also have the same problem.
    I m very confused about how to create mail accounts.
    My mail server is using linux.
    Can u plz help/guide/suggest me on "how can i add facility of new mail account creation like yahoo mail / hotmail....??? "
    -- what programming language/scripting language i should use which is secure also.
    Plz help me.
    Any type of help will be greatly useful to me.
    Thnk u very much.

  • Can't create BT email account

    Hello
    I switched to BT (unlimited Infinity1) two days ago, and although the broadband works fine, I've been unable to set up a BT email account.
    In the My Extras section of My BT the BTMail panel is marked "Inclusive" with a "Get Started" link at the bottom. However, when I click on this link I get the message: "Regret for the inconvenience cause (sic), we are currently unable to find mailbox information corresponding to the account".
    I use a hotmail address for my BT ID, and don't have a BT Yahoo! address. Do I need one of these to create a BT email account?
    Help appreciated!
    Solved!
    Go to Solution.

    Mothershipton wrote:
    Thanks.
    Apparently, it was due to the fact that my order hasn't been cleared yet - despite the fact that my broadband has been up and running for two days.
    That is what I guessed, as its been mentioned before. All related tasks have to be completed before an order can be closed.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Can't create second email account

    I'm just use bb..and I use torch 9800..I have two email account that I create before..but I can't set up my two email account..I just can set up one only of my email account..so,how can I set up my second email account??...&amp;amp;gt;Help wanted&amp;amp;lt;

    OK, let me see if I understand:
    You have one email account successfully integrated.
    You want now to integrate a Yahoo email account, but when you provide the credentials to the on-device email configuration wizard, it replies with "password and email is incorrect".
    Is that accurate? If so, I suspect that the error message is not exactly that...but nevertheless it sounds like the credentials you are providing for this Yahoo account are not valid. Any chance there are special characters and/or numbers in the email address or the password? If so, then this may apply...for instance, if your password is
    ab123
    and you enter
    a > b > ALT > 1 > 2 > 3
    the actual result will be
    ab1er
    You must enter
    a > b > ALT > 1 > ALT > 2 > ALT > 3
    in order to wind up with ab123. So, in this example, while on the BB keyboard you think you are typing ab123, you are actually typing ab1er.
    On your BB, when you type your password, you should get just a moment where each character is shown in the clear before it changes to an *. Watch closely the next time and you may see a surprising result.
    Otherwise, do indeed try (via your BB Browser) the link provided above by Wolf359. Additionally, you can, from your PC/browser, try your carriers BIS website...you will need to ask them for that URL. Further, if you ring up your carrier, they may be able to integrate this to your BB for you.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How do I create group email mailing lists?

    How do I create a group email mailing list?

    Open Contacts - its in the Applications folder.
    In the menu bar click File, and select New Group. In the left column of Contacts there will be a new item called untitled group. (You can change the name.)
    Next click All Contacts on the left, and drag and drop the names you want in the new group.
    To send an email to the group you start a new message and type the group name in the To: field.

  • Problems while creating an email account

    Hej,
    end of July I bought a BB Curve 9320. Till today I was not able to create a mail account. A smartphone without email access. The problem is the missing possibility to create a internet mail account. I' m only able to put in information for a company account, which I don't have. During the past weeks I spent hours and hours reading manuels/blogs and watching youtube videos. I did also ask my telephone provider whether they put in any limits for the internet mail accounts. Nothing like that.
    I guess the problem might be caused by our bb playbook. It's running pretty well. On the playbook is running a windows live account for mail, contacts and dates. When I started the 9320 I did first use the same bb id we use on the playbook.
    Please help me, I'm totally frustrated. What can I do?
    Kind regards from Hamburg
    Jan
    Solved!
    Go to Solution.

    From the device go to blackberry.com/integrate
    and see if you can setup your email from there.  The Playbook isn't causing the issue.  Keep us posted.
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

Maybe you are looking for

  • How can I have multiple I-tunes accounts on the same computer?

    So I have a mac, and my brother has his i-tunes account on it. Earlier today I set up my mom's account. All of my brother's songs were on her account, and when I deleted a song from her library, it was also deleted from my brother's library! My mom w

  • Purchase order remainders

    Hi, Can you tell how to see the print preview for the purchase order remainder letters ? i had maintained ;purchasing value key but when i try in me91a the system show the message as " No suitable purchasingdocuments found. Regards, Renuga.A

  • Payment Wizard- If there is a check jam and the run was executed.

    If there was a check jam and the check run was executed, can they run the payment wizard using the saved executed run? What do they do?

  • How to raise the ringtone volume in nokia 5200??

    i cant figure it out how to raise the ringtone voice on my nokia 5200, when someone calls me the ringtone voice is low and than after like 4 seconds it goes higher and higher to the maximum...i want the ringtone volume to be at the maximum from the f

  • VERY URGENT!!transferring a midlet to a mobile device and other questions

    PLEASE HELP!! hi i would like to know the following details regarding J2ME: 1. What is the size of a KVM(Kilobyte Virtual Machine)? 2. What would be approximately the memory size of a mobile phone? 3. How do i transfer my midlet application developed