Email for a user goes also other user's inbox (sometimes)

Hello, I have a problem with a client with sbs2011 (sda migrated sbs2003), it happened that internal email sent to a user, also appeared in imbox another user!! 
I have checked and there are no active rules and the tracking seems to be delivered only to the recipient! 
What should I watch? 
thanks

Hello,
I still recommend you use get-transportrule | fl cmdlet to check if there is related rule. If BCC the message to another user, the message tracking will not trace it.
Please check if you set "forward" on user' mailbox.
"Another thing: mail goes to alternate recipient after a day more or less!". Do you mean the recipient is random?
Cara Chen
TechNet Community Support

Similar Messages

  • Single notification email for all users

    Hi friends,
    Is there any way of setting a single notification email for all users in oracle 11i so that all the notification email goes to that email address (for test purpose only)?
    thanks in advance.
    LISAN

    See MOS Doc 562551.1 (Workflow Java Mailer FAQ ) and search for "override address". More details in MOS Doc 828812.1 (How To Stop Old Outbound Workflow Notification Email Messages During Clone Activity)
    HTH
    Srini

  • TS3276 email from certain senders goes directly to trash before inbox; this is consistent for wife's email (which is definietly a problem)

    email from certain senders goes directly to trash before inbox; this is consistent for wife's email (which is definietly a problem)

    Mail > Preferences > Rules. Anything there?

  • How to have mail server automatically cc all email for a user to other acct

    I have a user on my 4.9 Xserve who wants her email automatically send to another account. I set forwarding first, but her email client keeps asking her for a password (and hers doesn't work) and won't allow her to see past email. Is that normal? Anyway, I've shut off forwarding for now, and am wondering if it's possible to have it automatically cc'd to another account (send a copy, but don't interfere with her ability to manage the email in her normal account with an IMAP client). Any ideas?
    Thanks,
    Mike

    Be aware that you are about to enter the dark zone of Unix file editing. Once there, you may never want to come back. Your friends and relatives will spurn you and you will start to dress in dark clothes and listen to impenetrable music.
    You can also screw up your whole system... but hey, who wants to live forever
    If you have a skateboard, sit it on your desk, then switch off all other lights except for an anglepoise...
    In Terminal, cd to postfix directory, and just for interest, list the files already there...
    cd /etc/postfix
    ls -l
    You should see the main.cf one which you will edit later.
    Create the new recipient_bcc file using 'pico', one of the built-in text editors. This is the easiest to start with because it contains on-screen help. There are others, including 'vi' which I would normally use. You will prefix the command with 'sudo' which temporarily makes you the 'super-user' (root) and needs the admin password. So...
    sudo pico recipient_bcc
    Add the two email addresses, separated by a tab or space, on the left: the local email address, and on the right: the address to send copies to (BCCs). To edit existing text, use arrow keys. Save the file using ctrl-o, confirm filename, then exit (ctrl-x).
    For postfix to be able to read this as a database, you need to 'postmap' it...
    sudo postmap recipient_bcc
    To confirm, list the files and you will see the two new ones (ls -l).
    Before editing the main.cf file, make a backup copy of it...
    sudo cp main.cf main.cf.bak
    If you need to revert to the backup, you reverse the orig/target args...
    sudo cp main.cf.bak main.cf
    Edit the main.cf file (sudo pico main.cf) and either 'next page' to bottom or enter '^_' (ctrl + underscore char) then specify line number 999.
    add the line...
    recipientbccmaps = hash:/etc/postfix/recipient_bcc
    Postfix knows to use the postmaped .db file so you do not specify that one in the line.
    Save and exit file.
    Reload the postfix main.cf configuration file...
    sudo postfix reload
    Test it by sending an email to the user and watch the mail.log in Console app. You should see the BCC being sent to the other email address. If something has gone wrong, replace the main.cf with the backup, issue postfix reload, then try again.
    Once you have confirmed it working, dance around the room playing air guitar and give high-fives to any innocent bystander.
    -david
    Links...
    http://www.postfix.org/postconf.5.html
    http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/pico.1.h tml
    http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/cp.1.htm l
    http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/postfix. 1.html

  • Script to count number of emails for multiple users

    I am needing a little help with my script.  I have this working if I use just a single email address.  I need to add a list of 8 emails addresses for this to scan.  How would I modify this to send 1 email for all 8 users?
    I have seen scripts that make a html file that displays everything in a nice table but those are ran against all users in exchange and I only needs this for a group of 8 users.
    Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
    #Powershell Garbage
    $nl = [Environment]::NewLine
    #Mailbox to gather stats on
    $mailbox= "[email protected]"
    #Get todays date twice
    $startDate=Get-Date
    $endDate=Get-Date
    #Subtract 1 day from todays date (report ending day) and 7 days from todays date (report starting day)
    $startDateFormatted=$startDate.AddDays(-7).ToShortDateString()
    $endDateFormatted=$endDate.AddDays(-1).ToShortDateString()
    #Who to send the e-mail report to.
    #Multiple e-mail addresses should be in this format "<[email protected]>, <[email protected]>"
    $emailFrom = "[email protected]"
    $emailTo = "[email protected]"
    $subject = "Weekly e-mail report for $mailbox for $startDateFormatted - $endDateFormatted"
    $smtpServer = "mail.domain.com"
    # Sent e-mails
    $sendCount = Get-TransportService | Get-MessageTrackingLog -Start "$startDateFormatted 00:00:00" -End "$endDateFormatted 23:59:59" -Sender $mailbox -resultsize unlimited | select-object -unique MessageId
    # Received e-mails - This works but not on generic accounts
    $receiveCount = Get-TransportService | Get-MessageTrackingLog -Start "$startDateFormatted 00:00:00" -End "$endDateFormatted 23:59:59" -Recipients $mailbox -resultsize unlimited | select-object -unique MessageId
    $sendCountString = $sendCount.count
    $receiveCountString = $receiveCount.count
    $body = "Mailbox stats for: $mailbox $nl
    Report date range: $startDateFormatted 00:00:00 - $endDateFormatted 23:59:59 $nl
    Total e-mails sent: $sendCountString $nl
    Total e-mails received: $receiveCountString"
    $smtp = new-object Net.Mail.SmtpClient($smtpServer)
    $smtp.Send($emailFrom, $emailTo, $subject, $body)

    Could you elaborate a little bit more?  I have not done a lot with powershell in exchange.
    Would this be correct?
    $mailbox= "[email protected]"
    for each ($mailbox in $mailboxes)
    #Get todays date twice
    $startDate=Get-Date
    $endDate=Get-Date
    etc.

  • I keep getting emails for another user; can't seem to contact Apple support about this

    Hi there,
    I keep receiving emails for someone called Amanda to my email address.  These are not spam emails; it seems like someone called Amanda is signing up to reputable websites using my email address.  So far, Pinterest, Educreations and a women's magazine have sent me emails to confirm my membership.  There doesn't seem to be anything suspect going on: they're all respectable websites, and they're always addressed to Amanda.  I was also receiving confidential emails from a legitimate business with invoices etc. a while back.
    I'm confused as to what would be the cause and/or point of this.  It seems like a very benign way to spam/scam somebody.  Is it possible (I feel ridiculous even asking this) that emails can become crossed like telephones?  I know, I know, it's a stupid question.
    I'd like to contact Apple Support about this, but I seem to be going round in circles on the website.  Unless I have AppleCare (mine is expired) I can't seem to get in contact with anyone.  Can anyone help me or point me in the right direction?
    Thanks!

    You can contact iTunes support here : http://www.apple.com/support/itunes/contact/ - click on Express Lane, then iTunes > iTunes Store

  • Forwarding email for a user to another email account

    Hi,
    in Leopard server there was the possibility to forward the email for user to another email account with a domain outside of my server (in Workgroup Manager)
    This means: If the server receives email for user A with [email protected] he redirects the email to [email protected]
    I can't find this in Lion server.
    Does someone know how this can be done?

    To enable an account for auto-forwarding, follow this KB:
    http://support.apple.com/kb/HT5032
    It'm much better than working on Webmail.
    Alex

  • How to set emails for multiple users?

    Hello,
    We have a scenario, where there are several users whose email is not set in "My Account". We want to set this in one shot, what is the best bet for us?
    Also we want to send email to a person outside OBIEE infrastructure, how can we do this?
    Please reply

    I've found the same problem in OS X Lion, with Mail, iCal and Address Book getting confused when two Exchange accounts on the same server are configured, resulting in either missing or duplicate entries (despite everything appearing fine when accessing the accounts individually via Outlook or OWA).  iOS doesn't have any problem with this setup; two Exchange accounts on the same server work perfectly; the issue seems specific to Mac OS X.
    After some experimentation I've found a workaround.  Since the issue crops up with two Exchange accounts on the same server, it seems possible to trick OS X into thinking the accounts are on two separate servers through a little DNS manipulation (which I realize may not be a practical option for everyone).  Here's what resolved the issue for me:
    My external and internal DNS FQDNs for the mail server were mail.mydomain.com.
    I set up a new DNS entry - mail2.mydomain.com - as a CNAME for mail.mydomain.com.
    On my Mac, I set up Exchange account #1 with the server set to mail.mydomain.com.
    I then set up Exchange account #2 with the server set to mail2.mydomain.com.
    Even though both FQDNs resolve to the same IP, this seems sufficient for Mac OS X to consider them as separate servers, elliminating the problems I had before when I set both Exchange accounts to the same mail server FQDN.
    I've only tried this on OS X 10.7 Lion, and the recent 10.7.1 update, although I wouldn't be surprised if the same trick works for earlier versions of OS X.

  • Retrieving User groups and email for all users in a group

    Hi Everyone,
    I need to create an ADF application to retrieve all the groups in OID, the user would select a group and it should list down all the email addresses in that group.
    Can you suggest what is the best way to achieve this. My main concern is how to retrieve groups and email addresses from OID. I was unable to find APIs for it.
    Your suggestions are greately appreciated.
    Thanks,
    Husain

    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Dreamweaver had this capability many releases ago, but it has been dropped, so it's no longer available.
    Regards,
    Randy Edmunds
    Dreamweaver Development
    Adobe Systems, Inc.

  • Redirect emails for non-users

    We are in the process of migrating to Exchange Online. Our current Exchange provider allows us to create a "contact" which can be emailed internally and externally and those emails are redirected to the external email.  For instance, we outsource
    our accounting to an agency. They do not have an email account on our mail server. However, we have created a redirect where if anyone (internally or externally) emails to accounting@ company.com it automatically goes to the accountant's personal external
    email mailbox.   How do I do this on Exchange Online?

    What you want is for the rule that determines how the junk filter works to be evaluated before the redirect rule instead of after. You cannot directly tell Mail to do this (the junk rule is always evaluated after all the other rules), but you can define a rule of your own that mimics the one used by the junk filter and place it anywhere on the rules list.
    Go to Mail > Preferences > Junk Mail and click the Advanced button. Take note of how that rule is defined, define one of your own that does exactly the same, and place it above the redirect rule, so that it's evaluated first. All incoming messages that don't satisfy the criteria of this rule will remain in the Inbox and be processed by the subsequent rules, which I believe is exactly what you want.

  • Send Workflow email to User SAP Inbox with a Popup and cproject link

    Hi,
    I am working SAP portfolio and project management workflow.
    Requirement: Trigger workflow when Portfolio Execution Decision Point status changes,
    We have to send two email notifications as part of the requirement;
    First notification should go to user’s (Only one user) SAP Inbox, Containing two links
    Popup link (It will contain list of question which the user has to confirm) if he
    confirms we have to send second  email notification. (Pop-up layout is attached)
    Link for the user to navigate to SAP PPM cProject to upload the documents. (NWBC)
    The second notification should go to Outlook of the users (via group email) with Link for the user to navigate to SAP PPM cProject.
    We can trigger the workflow using event DECISION_POINT_STATUS_CHG in Class CL_RPM_DECISION. My question is how should design the pop-up and incorporate the Pop-up and cproject link in first notification email sent to user SAP Inbox.
    Please let me know if you need more details.
    Thanks & Regards,
    Amit Singh

    We use transaction NWBC to login to netweaver business client. Then from there we navigate to Project management view and double click to select the project. It opens project element --> Collaborations tab. There we select the folder link. (screenshot attached)
    Regarding addition of multiline container element (Table) let's say 'A'; I create multiline container element A in Workflow element list, Populated  element A using a utility class/method assigned to a background task.
    Then, I created a user decision task, inside the task container another multiline container element 'B' with same type and I did binding b/w workflow container element 'A' and task container element 'B'.
    Now, I am passing &B& in the decision task description. If I execute the workflow, The user decision task description is blank.
    Secondly, I did not get any pop-up asking how to display it (all lines with line break).
    PS: My internal table also has only one field.
    Am I doing something wrong here?

  • "Email for Nokia" Not Working Properly after Firmw...

    The "Email for Nokia – 10 Accounts" also called Nokia Messaging does not work after firmware upgrade. 
    I upgraded my E63 firmware from 400.21.13 to 410.21.10 (the latest).   After upgrade, I installed the Email software, ver 9.07(2), from Ovi store.  The problem starts after I entered my email address and password.  The software imported the email account to the Communication --> Messaging  folder (where you used to read your text message). Before upgrading, the email software manages all my email accouts and synchronise up to 10 emails.  Now that nice email software and user friendly interface no longer show up.  Instead it uses that poor design Communication --> Messaging folder.  It only allows maximum 2 email acct. auto retrieval and NOT working with yahoo mail.  
    Please advise how can I get eh Nokia email works again.  thanks

    Very upset with Nokia's tech support service, taking so long not calling back after contacting them.  Finally I found a work around.  After reinstall the email software, setup a new email account never used with Nokia email before.  Then the software will setup correctly instead using the messaging folder.  This is a bug with the Nokia email software and the new firmware.    OR the Nokia email software is intended to do it that way because it's a trial version.  It just let you try it for the first time of installation. 

  • Forward Email for one account to another domain?

    I apologize if this is a repeat question, but I am still having problems setting this up.  Snow Lep used to have the ability to forward email for a user to another location.  I host my own domain with multiple users.  I want all mail sent to one of those users, in my domain, to go to another email address outside my dowmain.  Basiclly to do whatever process they "Forward mail" option in old Workgroup Manger, for a user.
    I looked into the "Virtual Domain" stuff for postfix, and forwarding there, but from what I can understand, thats for Virtual Domains, not for ones that  your actually hosting.  i.e. Can't have domain.com in Mydestinations AND Virtual file.
    So how do I acomplish this?
    Thanks in advance.
    Steve

    patricknh wrote:
    I was very happy to hear that Mail in iOS 4 would allow me to move individual email messages from one account to another, indeed from one folder in one account to another folder in another account. Of course, this has been trivially easy in OS X's Mail.app for ages.
    I'm very disappointed to find that there's a gigantic gotcha -- I cannot for the life of me move an email received in (say) my Gmail account, or my me.com account, into any folder in my work Exchange (2003) account. I get the same message: "Unable to move message. The message could not be moved into the mailbox [foo]."
    Is this in fact generally the case? If so, it should be owned up to.
    With two Exchange accounts, Gmail and a private business account, I can't move messages from either account to the other. I'd love to know if there's a fix.

  • Moving some Inbox Emails to subfolders leaves a duplicate copy in the inbox

    Hi All hope you can offer some advice on this strange issue we are having.
    We have recently installed a SBS2011 server. During installation I updated Exchange to SP3 (which we always do)
    We created .PST for each user and imported email using powershell - all Imported across successfully.
    The one user have 4gb of email which is made up of inbox and subfolders.
    The issue we are having is this  - 
    When this user attempts to move an email by either Drag n Drop or Rt Click and MOVE to folder - the email appears in the moved folder but also stays in the Inbox (in effect creating a duplicate)
    Now - If I then move the one that appears in the sub folder to another folder - it moves without leaving a duplicate in the original subfolder ......... the one in the inbox is still there though.
    I tried logging off and back in - the email is still in both places.
    I deleted the one in the sub folder and the one in the inbox disappears as well ??
    I have tried it in OWA and Outlook 2013 and the problem still occurs.
    I have tried sending a 3mb email into the admin account and re-creating the issue -- but this seems to work fine...
    So in summary - its only happening on some emails for some users ...
    Can anyone suggest a starting point for this.... I know its real strange behaviour for email and something i have never come across before
    Kind Regards
    Stuart 

    Hi -
    This is what I have tried as advised.
    1. Created a new .PST file of a users account using outlook 2013
    2. Tested that all files move ok when opening the .pst ---- YES they do
    3. Deleted emails from users Exchange account using powershell
    4. Opened Outlook and confirmed all emails were gone - YES all empty.
    5. Re-Imported from local .PST file using outlook on the PC to Import into mail account.
    6. Once all folders are updated - tested the emails that were causing problems moving - Problem still the same.
    I have checked Exchange and can confirm that this is Exchange 2010 SP3 with Rollup 7 (so culdnt get any more up to date)
    Can anyone else please offer any advice / Tips?
    Remember this only happens on some emails in the inbox ....some emails move just fine.
    The ones that seem to create a duplicate - if I delete from either the inbox or the folder then both go ...so its almost as if its a ghost copy being created......i'm flummoxed though for sure..
    Regards
    Stuart
    Stuart Smith

  • How to send Emails to Other Domain for the users in My AD

    Hi All,
    I have a Domain test.com and in this i created 10 users and now i in the properties of their account i added mail address as ****.dummy.com (which is not my domain which i have created separately and there is no relation between these two) No will the mails
    will be deliverd to those users??
    Thanks

    Is this "other domain" you are talking about just an SMTP domain, or a Windows domain?  If the former, and there is a messaging system they can receive with, you can just send (though you may need a send connector).  If the latter,
    is it in the same Windows forest?  If so, you need to prepare the domain for Exchange (using Setup /PrepareDomain).  You can then add that domain to your Accepted Domain list (in the Organization configuration, Hub Transport role) and create
    mailboxes for these users.  Once the have mailboxes, they will receive email.  Until all of this happens, they won't be able to get mail.

Maybe you are looking for

  • Upgrading Early 2009 Mac Pro to Yosemite

    I need an upgrading for dummies tutorial   I want to upgrade some applications that I use and can not do that with Mountain Lion which is currently on my Early 2009 Mac Pro. (Processor 2.66 GHz Quad-Core Intel Xeon - Memory 12 GB - Graphics NVIDIA Ge

  • How can I fixing content to a specific page?

    I am making a template in numbers that has a series of pages that each contain spreadsheets. The document will be a template to use regularly. However the content may change each time i use it. On each page there are two small spreadsheets and a comp

  • "Object variable or With block variable not set" error

    I have Presenter 6.2 installed into PowerPoint 2007 on a XP operating system. I have successfully used this product a couple of months ago. Evidently now I am getting an Adobe Presenter error prompt that says "Object variable or With block variable n

  • How do you make smart mailbox sorting options persistent?

    I have a smart mailbox that I would like to sort based on flags, and I would like for this selection to persist from session to session. I thought I remembered this working in Lion, but for some reason it's not working for me in Mountain Lion: In the

  • Reinstalling Elements 6.0 without CD

    I have the serial number from the Elements 6.0 on my old computer but no longer have the CD. I migrated it to my new computer but am getting a message that I need to uninstall (which I did) and reinstall. How do I reinstall without the CD? Is there a