User Welcome Email keeps including subdomain?

Everything on my server seems to be working fine, but for one small issue:
When I set up a user, they get an email in their new email account saying "Welcome to mini.unifiedmediagroup.com" - this SHOULD just say unifiedmediagroup.com... The reason this is an issue is that when they click on "File Sharing", it starts to look for a machine that doesn't exist (to the outside world, anyway) because the link is to "mini.unifiedmediagroup.com", NOT "unifiedmediagroup.com".... Also, I am noticing that when I try to create a group wiki, I get the same issue - it launches the browse with the "mini." affixed to the domain name. (as soon as, in the browser, I eliminate the "mini." and leave the rest, the group wiki creation is fine!
Like I said, all of my other services are running off of just "unifiedmedia.com" just fine - any ideas of how to make it ALL that way???
Thanks!

it will be a postfix issue, you can hack the file:
http://www.postfix.org/BASICCONFIGURATIONREADME.html
Good hunting

Similar Messages

  • When trying to update apps from iPad and iPhone a previous one time users email keeps coming up. How do I delete their information?

    When trying to update apps from iPad and iPhone a previous one time users email keeps coming up. How do I delete their information?

    delete off any apps that are asking for the wrong apple id and download/sync them over from the correct one

  • Send Welcome Email to New User using the Scripting Agent

    Hi
    I require some assistance please.  I have found a number of scripts online to send a Welcome Email to new users whereby they make use of the ScriptingAgent.xml file.
    I like the way the scripts have been configured and have mashed up one or two scripts together for my desired result however when testing in my lab (Exchange 2013) I have found tow problems.
    The problems are:
    1. When creating a new user and mailbox (New-Mailbox) via the ECP the script throws out an error which I will post later in this post. The mailbox is created fine but it does not send out a welcome email.  When a user is created in ADUC and then a mailbox
    is created (Enable-Mailbox) the welcome email is sent out correctly.
    2. In the script i have a section to check for NewUser00 in the HTML file and replace that with the Users Name and Surname, however this does not work correctly, I just come up blank:
    The Script:
    <?xml version="1.0" encoding="utf-8" ?>
    <Configuration version="1.0">
    <Feature Name="WelcomeEmail" Cmdlets="New-Mailbox,Enable-Mailbox">
    <ApiCall Name="OnComplete">
    if($succeeded) {
    # Waiting for synchronization after mailbox has been created.
    Set-ADServerSettings -ViewEntireForest $true
    Start-Sleep -s 10
    # New-Mailbox triggered. Taking SamAccountName parameter.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("SamAccountName") -eq $true) {
    $UsrSamAccountName = $provisioningHandler.UserSpecifiedParameters["SamAccountName"]
    $USRdfirst = $provisioningHandler.UserSpecifiedParameters["FirstName"]
    $USRdlast = $provisioningHandler.UserSpecifiedParameters["LastName"]
    $UsrAlias = (Get-Mailbox -Filter {SamAccountName -eq $UsrSamAccountName}).Alias.ToString()
    $USRdname = $USRdfirst + " " + $USRdlast
    # Enable-Mailbox triggered. Taking Identity parameter, this is the only one avalaible in this case.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("Identity") -eq $true) {
    $UsrIdentity = $provisioningHandler.UserSpecifiedParameters["Identity"].ToString()
    $USRdfirst=$provisioningHandler.UserSpecifiedParameters["FirstName"]
    $USRdlast=$provisioningHandler.UserSpecifiedParameters["LastName"]
    $UsrAlias = (Get-Mailbox -Identity $UsrIdentity).Alias.ToString()
    $USRdname= $USRdfirst + " " + $USRdlast
    # Defining variables.
    $UsrAddr = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).PrimarySmtpAddress.ToString()
    $UsrOU = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).OrganizationalUnit
    # Sending email notification to the user in specific OU.
    if ($UsrOU -match "Contoso.com") {
    # HR #
    $fromHR="[email protected]"
    $SubjectHR="'Welcome to Contoso'"
    $BodyHR = [string] (get-content ("c:\welcome\WelcomeMSG.htm"))
    $BodyHR = $BodyHR -replace "NewUser00",$USRdname
    $fileHR = "c:\welcome\WelcomeMSG.htm"
    $smtp="192.168.x.x"
    Send-MailMessage -From $fromHR -To $UsrAddr -Subject $SubjectHR -Body $BodyHR -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF8) -SmtpServer $Smtp
    # Clearing variables. Each one in its own line in order to prevent error messages from being shown on EMC.
    if ($UsrAlias) { Remove-Variable UsrAlias }
    if ($UsrAddr) { Remove-Variable UsrAddr }
    if ($UsrOU) { Remove-Variable UsrOU }
    if ($UsrMsg) { Remove-Variable UsrMsg }
    if ($UsrIdentity) { Remove-Variable UsrIdentity }
    if ($UsrSamAccountName) { Remove-Variable UsrSamAccountName }
    </ApiCall>
    </Feature>
    </Configuration>
    The Error for issue 1:
    The cmdlet extension agent with the index 5 has thrown an exception in OnComplete().
    The exception is: Microsoft.Exchange.Provisioning.ProvisioningException: ScriptingAgent:
    Exception thrown while invoking scriptlet for OnComplete API: You cannot call a method on a
    null-valued expression.. ---> System.Management.Automation.RuntimeException:
    You cannot call a method on a null-valued expression. at CallSite.Target(Closure , CallSite , Object ) at
    System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) at
    System.Management.Automation.Interpreter.DynamicInstruction`2.Run(InterpretedFrame frame) at
    System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
    --- End of inner exception stack trace --- at Microsoft.Exchange.ProvisioningAgent.ScriptingAgentHandler.OnComplete(Boolean succeeded, Exception e)
    at Microsoft.Exchange.Provisioning.ProvisioningLayer.OnCompleteImpl(Task task, Boolean succeeded, Exception exception)
    Any assistance in resolving these two issues will be really appreciated

    Ok I am gonna to answer my own question.
    I have persevered through the day and have resolved my two issues.  I hope this assist others within the community.
    Script:
    <?xml version="1.0" encoding="utf-8" ?>
    <Configuration version="1.0">
    <Feature Name="WelcomeEmail" Cmdlets="New-Mailbox,Enable-Mailbox">
    <ApiCall Name="OnComplete">
    if($succeeded) {
    # Waiting for synchronization after mailbox has been created.
    Start-Sleep -s 30
    Set-ADServerSettings -ViewEntireForest $true
    # New-Mailbox triggered. Taking SamAccountName parameter.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("Name") -eq $true) {
    $UsrSamAccountName = $provisioningHandler.UserSpecifiedParameters["Name"]
    $Usrname = (Get-Mailbox -identity $UsrSamAccountName | Select Name | foreach { $_.Name})
    $UsrString = $Usrname | Out-String
    $UsrAlias = (Get-Mailbox -Filter {Name -eq $UsrSamAccountName}).Alias.ToString()
    # Enable-Mailbox triggered. Taking Identity parameter, this is the only one avalaible in this case.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("Identity") -eq $true) {
    $UsrIdentity = $provisioningHandler.UserSpecifiedParameters["Identity"].ToString()
    $Usrname = (Get-Mailbox -identity $UsrIdentity | Select Name | foreach { $_.Name})
    $UsrString = $Usrname | Out-String
    $UsrAlias = (Get-Mailbox -Identity $UsrIdentity).Alias.ToString()
    # Defining variables.
    $UsrAddr = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).PrimarySmtpAddress.ToString()
    $UsrOU = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).OrganizationalUnit
    # Sending email notification to the user in specific OU.
    if ($UsrOU -match "contoso.com") {
    # HR #
    $fromHR="[email protected]"
    $SubjectHR="'Welcome to CONTOSO'"
    $BodyHR = [string] (get-content ("c:\welcome\WelcomeMSG.htm"))
    $BodyHR = $BodyHR -replace "NewUser00",$UsrString
    $fileHR = "c:\welcome\WelcomeMSG.htm"
    $smtp="x.x.x.x"
    Send-MailMessage -From $fromHR -To $UsrAddr -Subject $SubjectHR -Body $BodyHR -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF8) -SmtpServer $Smtp
    # Clearing variables. Each one in its own line in order to prevent error messages from being shown on EMC.
    if ($UsrAlias) { Remove-Variable UsrAlias }
    if ($UsrAddr) { Remove-Variable UsrAddr }
    if ($UsrOU) { Remove-Variable UsrOU }
    if ($UsrMsg) { Remove-Variable UsrMsg }
    if ($UsrIdentity) { Remove-Variable UsrIdentity }
    if ($UsrSamAccountName) { Remove-Variable UsrSamAccountName }
    </ApiCall>
    </Feature>
    </Configuration>

  • Send a welcome email to a new user

    Dear All,
    I am having a Domain Controller named as Test.com ready with Exchange server 2010 SP2. I want to set, whenever I create a new user account, one welcome email should go to new users. And one email to go to all users that new user has join our company.
    Looking forward for reponses for the same.
    Kamal Sharma

    Hi Sukum,
    I've been follow your blogs to enable welcome email in Exchange 2013, and I got the warning prompt as below during I create new mailbox. What could be the reason of that? my new mailbox doesn't receive any welcome message.
    Appreciate your kindness help.
    Warning:
    The cmdlet extension agent with the index 5 has thrown an exception in OnComplete(). The exception is: Microsoft.Exchange.Provisioning.ProvisioningException: ScriptingAgent: Exception thrown while invoking scriptlet for OnComplete API: Exception calling
    "Send" with "1" argument(s): "A recipient must be specified.". ---> System.Management.Automation.MethodInvocationException: Exception calling "Send" with "1" argument(s): "A recipient must be specified." ---> System.InvalidOperationException: A recipient
    must be specified. at System.Net.Mail.SmtpClient.Send(MailMessage message) at CallSite.Target(Closure , CallSite , Object , Object ) --- End of inner exception stack trace --- at System.Management.Automation.ExceptionHandlingOps.ConvertToMethodInvocationException(Exception
    exception, Type typeToThrow, String methodName, Int32 numArgs, MemberInfo memberInfo) at CallSite.Target(Closure , CallSite , Object , Object ) at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) at System.Management.Automation.Interpreter.DynamicInstruction`3.Run(InterpretedFrame
    frame) at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame) --- End of inner exception stack trace --- at Microsoft.Exchange.ProvisioningAgent.ScriptingAgentHandler.OnComplete(Boolean succeeded, Exception
    e) at Microsoft.Exchange.Provisioning.ProvisioningLayer.OnCompleteImpl(Task task, Boolean succeeded, Exception exception)

  • Did not receive gamers club unlocked welcome email and not appearing in account

    I just signed up for gamers club unlocked today but didnt receive a welcome email andit doesnt appear to be listed in my account. Could someone confirm if I have it?

    Hi mchristy,
    I wouldn't worry just yet! It typically takes 2-3 business days for welcome packets to arrive after enrollment, so you may still see yours within the week. Make sure to keep an eye on both your inbox and junk mail folders over the next few days for that communication. Gmail users should also monitor their Promotions folder if they have this option enabled as messages from retailers (including Best Buy) may wind up in this folder, effectively bypassing the primary inbox.
    As far as your Gamers' Club Unlocked status is concerned, it looks like you simply need to complete the enrollment process on BestBuy.com to address this issue. Instructions how to do so can be found in the article I've linked below, so I'd encourage you to try them out when you can.
    How To Register Your My Best Buy™ Account
    Welcome to the My Best Buy Gamers' Club!
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • How to Create Internet user with email id as user id

    Hi All,
    I am having a requirement to create internet user taking email id as the user id, means the user id is same as the email id, to achieve this do I need to maintain some settins or is there any standard BAPI to do this.
    Is this a standard feature of CRM 2007.
    Thanks in advance,
    Mayank

    Hello Mayank,
    B2C Scenario has these options for the parameter usertype in the Application definition.
    In R/3 scenario: R3_SU05Customer_LoginEmail ISA R/3:This login configuration is the only one that is supported for ISA R/3 B2C. It cannot be chosen for the B2B and shopadmin applications. During B2C registration, SU05 users are created with type equals 'KNA1', referring to a newly created R/3 customer.
    -In CRM scenario:_ CRM_Standalone_LogonConsumer: Standard user management settings if Internet Sales is used as a standalone, the login is based on the e-mail address. The internet users must use the SU01 user concept. Consumer is the keyword here. The BP associated with the SU01 user is a Consumer.
    The B2C application is hard-wired the way it is defined above.
    Now for the B2B application
    In R/3 scenario: Only R/3 ISA provides some SU05 user possibilities. But they are not relevant to your situation
    In CRM scenario: it gives CRM Standalone or CRM Portal possibilities. In CRM Standalone, the login id uses Alias. But nothing stops you from using keeping Alias same as the User ID. In case of Portal, the login occurs via Portal. That is user log on to portal and gets into ISA using SSO. The portal offers varieties of ways to authenticate including email adress, user id etc. This is made possible by use of LDAP in portal for user authentication. They maintain a mapping between email-id and user-id and do what you are seeing now in SDN. If you have Portal in your landscape, and let external B2B users come through Portal into ISA with SSO, you can also do login using email-id in a jiffy.
    But in your case I think you are stuck with CRM Standalone
    Easwar Ram
    http://www.parxlns.com

  • Can I sync two iPads with different users and email addresses on the same computer

    Can I sync two IPads with different users and email addresses on the same computer.

    yes, just make sure you turn off auto-sync to keep everything organized before you try syncing
    on a pc
    edit > preferences > devices - 'prevent ipads, iphones, and ipods from syncing automatically' needs to be checked

  • Changed my Apple User Name (email address) and home sharing no longer works?, Changed my Apple User Name (email address) and home sharing no longer works?

    I've had the 2nd generation Apple TV since this past October when it was released and it has worked fine until I recently changed my Apple User Name (email address). After changing my user name my Apple TV and iPhone 4 no longer find my shared network. Home sharing is enabled on all devices, including my Sony Vaio Laptop, iPhone4, and Apple TV 2nd generation. Everything else has remained constant, including service provider, router, modem, and internet security (Trend Micro). Also, my library is on a networked hard drive, which didnt seem to make a difference before, but I figured I'd mention it. Any thoughts?
    Thanks.

    Winston,
    Thank you for the information.  He confirmed that the ID and password are the same on every device.  This only started happending when he changed his User Name with Apple. 
    --Itunes is running on a Windows Vista Machine (Sony Vaio)
    --He has an Apple TV (2nd Gen)
    --He has an iPhone 4
    Can you tell me more about the technologies that apple uses to make "homesharing" work?  Do you think he may need to remove then re-install Bonjour?

  • After updating my imac to the 10.9.2 my email keeps "quiting unexpectedly" and suggestions?

    i down loaded the 10.9.2 on my OSX imac. Now my email keeps "quiting unexpectedly". My email is through my local internet supplier which i have contacted and the say my internet is working just fine. i need some help getting my email back so i can acess my new and old emails. thanks u

    Do a backup.
    Quit Mail.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder. Go to Library/Containers/com.apple.mail.  Move the folder com.apple.mail to your desktop. You must move the entire folder, not just the contents.
    Restart, re-launch Mail and test. If the problem is solved, recreate any required Mail settings and import any emails you want to save from the folder on the desktop. You can then put the folder in the Trash. If the problem remains, return the folder to where you got it replacing the one that is there. 
    Information learned from Linc Davis. Thanks to leonie for some information contained in this.
    Crashes/quits unexpectedly

  • Welcome Email from Skype

    I just received a welcome email from Skype indicating that somebody had used my email address to open an account. It has no use name as it states: 
    Hi there, 
    Congratulations on joining Skype! Now you can enjoy the magic of free face-to-face calls, instant messaging, screen sharing and so much more — all with Skype.
    I have been a long time Skype user and already have a Skype account under the email address. 

    report that email and user to [email protected]  
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • How to disable Wiki Server Welcome emails

    I am running OS X Server 10.9.2, and I have a Wiki Server set up. Whenever I give a user access to a Wiki, the user gets an email notification. Is there anyway I can disable those notifications?
    I see on previous versions there was an option:
    If you want the server to send an email notification to everyone with access to the wiki, select “Send welcome email to new members.”
    However, I don't see that option anywhere on this version of the Wiki Server.

    Try the OS X Server forum.

  • My email keeps crashing on my pc?

    My email keeps crashing on my pc?  Each time I open my mail account and select to compose a new email, the account freezes up and eventually I have to kill the page in order to get out of it.  Any fixes??

    I have been working with AppleCare since I originally posted and I am just now getting this resolved (not a knock on AC - I have been out on business some during this period).  At this point I am not sure I can provide the root cause, not sure I know. We tried a mix of many things such as:
    - We tried deleting rebuilding, restoring and sending stuff toe Apple's engineers.
    In the end the thing we fixed it by performing the following steps most suggested by Apple Engineers:
    1) Disconnecting all my iThings (iOS and OSX) from my iCloud keychain, deleting my icloud keychain from all devices in the process
    2) Moving the Mail folder from the User Library Folder to the Desktop (or other location).
    3) Went into each of my email accounts using a web interface (so logged into iCloud.com and access email there) and moved email from the inbox of the account to a separate folder. This is in case there was something in an email that was causing the issue.
    3) Started Mail and re-create all my email accounts in Mail.
    4) At this point after everything was stable on each computer for several days I reconnected iCloud Keychain on all my devices (iOS and Mac OSX)
    5) Pulled the email you find in the folders I kept in "On My Mac" from backups and imported them into Mail. Have been stable for two days at this point.
    If you have the time, patience and are not sure of what I did I'd recommend AppleCare they were patient.  If you want more detail from me about what I did don't hesitate to post again I can provide more details. In the end I think something got corrupted, and passed around through the iCloud keychain (which is different from the local keychain on your computer!) and maybe even in an email.
    FYI I used AirMail on my Macs during this period without Mail and while it doesn't have rules I found it a pretty good substitute for Mail and it definately saved my bacon.
    Hope this helps!

  • Dynamic Domain User in Email-Endpoint

    Hi all,
         I just have a simple question, does anyone know the Domain User in Email-Endpoint can be configured by a dynamic value?
         any methods which are able to do that will be welcomed.

    Validation Pattern should work. Something like this: text{O'@domain1.com'}|text{O'@domain2.com'}
    You can also use regular expression.

  • Old emails keep coming back

    I am using Mail on a macbook pro with retina display, running OS X 10.9.5.  Recently, duplicates of old emails keep coming back into my inbox - unread, as if they were brand new emails.  They always come a handful at a time.  They show the original dates of receipt, so they appear way down in my inbox and I have to sort by 'unread' to bring them to the top and delete them.  There seems to be no rhyme or reason - e.g. some are from contacts, some aren't, some I deleted when I originally received them, some I kept, some I replied to, some I didn't.  Any ideas on how to stop this happening?

    Cool.
    First, when it finds the OLD messages can you actually open them up? If so, you can/should rebuild your Trash Mailbox. I suspect you cannot open the old message though, which points to your Envelope INDEX being messed up.
    Quit Mail. Then, under ~/Library/Mail is a file called Envelope Index. Move it to the Trash. Or if that makes you nervous, drag it to the desktop. Open Mail. It will give you a message that will scare you -- a Welcome to Mail or a Mail Message Import window will pop up. This is fine. It will tell you it is importing your mail. Really it sees all your mailboxes but no index so it is creating that index.
    See if that doesn't fix your problem.
    -fred

  • Send Welcome Email After account exists in AD with initial password

    We have FIM setup to create new users based on a workflow In the workflow I add them to the outbound sync rule, then send a welcome email, in this workflow there are several steps, one is randomly generating an initial password, what I'm trying to figure
    out is how to send the welcome email after the delta sync runs that verifies the user was created in AD.
    I thought about using the Poor Man's version of a connector detection mechanism however how to get the inital password from the workflow above into the workflow that would run after the connector detection mechanism detected the object coming in from AD?
    Thanks;
    Jon

    The other option could be to set a random password on the AD account when it is created but then have another workflow that runs in the Portal when the objectSid is set for the first time. This workflow could reset the user's password in AD to another random
    value and send the email notification with that newly generated password - this way the password is known and but it isn't stored anywhere.
    Andrew.
    Andrew & Borys thank you both for the replies.
    Andrew I like that option more I'm guessing a a set transition MPR from null/blank (not sure what the initial value is in the portal) to not null / not blank.
    One issue is I don't think ObjectSID is available to use as a filter in the portal.
    I'll check this using a custom attribute.

Maybe you are looking for

  • Reporting discrepancies in Prime 2 wifi

    I'm having a problem where running different types of reports I've found that the number of WAPs being reported on changes. Under a device > detailed hardware the report generated does not include several WAP that are associated to controllers, in th

  • BDC- material master

    Hi all, I have a set of data where few materials belong to some views and others belong to other views and sevaral sets like this. how can i handle them. is BDC the best solution? or any other ways? tx, kiran

  • Trace in Physical Standby Database

    I'm getting the following messages in the trace file for a Physical Standby database: Background Managed Standby Recovery process started Start recovery at thread 1 ckpt scn 8253476346531 logseq 4391 block 2 *** 2008-02-13 09:09:44.366 Managed Recove

  • Sync just flagged photos to iphone?

    When I click on the photo tabs in itunes to sync photos to my phone I see events, places, people, etc, but how I can just sync photos I flagged to my phone? I don't understand why they don't just have a box there you can check. It has boxes for almos

  • Missing Safari Download Icon

    Missing Safari Download Icon