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.

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

  • 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

  • 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.

  • 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

  • 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.

  • Exporting raw XDcam clips for non-user

    I need to export some raw EX-1 footage for a user that doesn't have FCP and works on Windows XP. I found a similar question and a possible answer: http://discussions.apple.com/thread.jspa?messageID=10741386&#10741386
    Is there another way via FCP that I could do this?
    What if I put each clip into a sequence, about 20 clips, with 2-3 seconds of black between the clips, then outputted the whole sequence using H.264 compression.
    Is H.264 my best compression for Windows users?
    About delivery. Is it best to put this on a DVD or on a little ole flash drive?
    Cheers,
    David

    I'm waiting for him to reply to my email, but the way it stands now is; he's asked for raw clips of some motorcycle roadracing that we've shot. He wants to put together a basic demo reel of his talents on the track. Don't know what he's going to edit this on, only that he'll be working in Windows.
    The reason I'm asking now is that we've sent raw clips to clients before and they had difficulty working/viewing the clips until they upgraded FCP, even if they're on a Mac. I'm just wondering what to convert these raw clips into for universal workability.
    Cheers,
    David

  • 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

  • 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.

  • Guidance needed for non user ... so to speak...

    First off, I know nothing of value regarding wireless through VZ.  
    So if this is not a proper place to post, perhaps you can advise, and will move over there.
    While we have a cell phone, it is only for usage when on a trip out of town ... and we do not use it even at home ..... except to 'burn' off the minutes now and then, rather than losing them.
    We use a satelitte service for our internet.  Have used it for last 4-5 years; but recently read something that leads me to believe that perhaps a cell phone may be a better option.
    Why a better option ... because the satelitte service, while being faster than dialup, is not that much better ... now that the places where the feed goes up and down has become over crowded with users; versus years ago when it was not crowded ... and to try to get the satelitte company (WildBlue) to move our account is ignored.
    Our fee with WB is 50.00 per month.
    So am open for education ... not only in the poor service addressing, but also fees.
    Our cell phone fee is 10.00 per month ... "Prepay".  As to how many minutes that gives us, don't really know because we have never used them all up ... and the total minutes keep building up each time we send in our 30.00 dollars.
    I did once, a few years ago, acquire the necessary program and hook-up stuff to use the cell phone for modum when on the road.
    At home, my desktop and laptop are  wireless, and wireless router and modem that WB provides.
    Wife's desktop, older Dell, is hooked up to the system via wire into the router.
    Sorry to be so wordy, but trying to post stuff you may need toknow.
    So, can someone educate me please regarding if there is any advantage to switch over to VZ ... our carrier in our town ... speedwise and or possibly total fees based on what I reveal above.
    OH .... being that our cell phone is 3-4+ years old, presume it to not be ... bluetooth ??? --- equipped.
    Thank you

    Are you thinking of using Verizon for mobile broadband service and getting rid of WildBlue? Here's a page that explains some of the options:http://www.verizonwireless.com/b2c/mobilebroadband/?page=plans
    You can also get a smartphone, such as an Android or Palm, that can be used as a mobile hotspot for up to five devices. There is an extra charge to use an Android phone as a hotspot, but mobile hotspot is still free on a Palm Pixi Plus. Since you don't use many minutes, you could get the basic calling package for $39.99, then a required data package for smartphones. Keep in mind that all these mobile broadband options have caps on data usage. However, you can get unlimited data on a smartphone and won't have to worry about it on that device (mobile hotspot is not unlimited).
    Hope this helps. As the previous poster said, call customer service or visit a corporate store and someone will suggest solutions for you.
    As soon as we go to the city again, I plan on just that ... going to the VZ 'store'.  The community we live in, all 3k of folks ... no stoplights, etc. ... is remote and isolated, as is much of America.  Seems that only the folks in the big metropolis units get all the bells and whistles of these **bleep** companies.......even though our community has ALL the Fed. Govt. offices in it.
    As a result of that fact, the only access I have, as a former DSL user, is wireless ... which is 'probably' about 1/3 to 1/2 faster than dialup.  I got spoiled with DSL, and curse every day when on the internet.  Thought satelitte would solve the problem ... but does not ... only more $$ out the door for lousy results ..... due to latency of course.
    So when I read about EVDO, it appealed.
    But now, after all this time, I am hearing that I may not gain that much to justify all the extra charges.  Our 'little' cell phone runs us 10.00 per month ... and we NEVER use the minutes provided. 
    I just do not see any speed advantage by changing.
    So I am at a standstill...........and am thinking of forgetting it all as not worth changing ... and letting the cell phone minutes die a death by not renewing the quarterly charges...... especially since we discovered on our last RV trip that all we need to do to connect for messages, is park behind the motel complex, and use the wireless laptop to signin on a unsecured wireless connection.  Piece of cake.............

  • 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

  • How to get webi data into dashboard for non-users of webi.

    I need to find a way to get data from a WebIntelligence Report (essentially 3 numbers: Average This Year, Average Last Year and Target This Year (eg, 40, 63, 55)) into a dashboard, where the data is refreshed each day.  The resulting dashboard will be published on my external web site where anyone can access it.  It is essential that a connection to the webi server is not required, so I can publish the report data to a text file on a network drive and pick it up from there. The data will change daily so this must be reflected in the dashboard.
    Webi has no capability of saving to XML, so it's excel, text, csv archive or PDF only.
    I have been playing with the "From Text" option in the Data tab, but changes to the data do not show when the .swf file is run.  When in dashboard mode, I can click on preview to show the dashboard and the data doesn't change, however when I exit preview, the data is updated in the spreadsheet of the dashboard.  It is just never reflected when the dashboard is displayed.  I have dicked the refresh ever 1 minute, refresh data when opening the file, overwrite existing cells options in the External Data Range Properties page for the From Text option and am looking at the data via both a Grid object and an Spreadsheet object.
    Could anyone please suggest what I am doing wrong, or anything else I may be able to try instead.
    Using BO4.1, sp1, p1.
    Thanks
    Rodney.

    Hello Evans,
    PLZ refer publishing webservice connection in webi
    Creating BI Web Service in BO 4.0
    Hope it will suits your requirement
    Regards
    Subbarao M

  • Export photos & data for non-users of CS or LR?

    I have a number of wildlife photographs that I would like to make available to staff to help in field identifications. They do not have access of LightRoom or CS5. Is there a plug-in or other software that can capture the key words and EXIF data and make it available thru MS Access or Excell?

    I don't know of any plug-in but you could do it in the Print Module of Lr by using the <Photo Info> feature (right side of the print Module). The Photo Info will appear below the image.
    When you click on the small triangles besides the word "Filename" a fly-out menu appears. You can either choose one of the preset metadata (for instance "title" or "caption") or create a custom Info by selecting <Edit> at the bottom of the fly-out menu. The Edit-menu looks like this and you can select any combination and you can also insert custom text.
    When you are done with Photo Info you can either print the image with the photo info or you can select <Print to JPG> and create a JPG of your image with the data that you selected in <Photo Info>.
    If you enter the required field information data into - for instance - the caption field (in the Library Module) this info would appear in the JPG below the image when you select <Caption> in <Photo Info>.
    WW

  • 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.

  • How to configure notification emails for reports output or alerts for all users in r12

    Hi,
    I need to configure notification emails. I have provided settings in OAM-> Workflow and SMTP IP address in settings and only Outbound. I am able to test for my user ID.
    I want to know how to redirect emails or alerts for users like when a user runs a report he should get notification email in his outlook about the report output and details. In settings it only points for one replyto field. How do I mention all user ID's?
    Regards,
    Mohammed

    Hi Mohammed,
    You may check on XML bursting for XML based reports.
    In addition, also see links:
    http://oracle.anilpassi.com/email-output-of-concurrent-program-request.html
    Anil: Oracle Apps Concurrent program Output as Email
    Oracle ERP World: Email the output of a concurrent program as Attachment
    Also see:
    How to Redirect Output from Printer to Mail Message after Running Report (Doc ID 1036586.6)
    Thanks &
    Best Regards,

Maybe you are looking for

  • Slow GDM - different issues than other posts

    Hi all, GDM is slow to start (compare to what it use to be) the issue is I can't pin point why, as I have made a lot of updates lately including moving to Grub2 and changing quite a few .pacnew today (I know I should do it right away...) I seems howe

  • ADMDialogRef equivalent in Acrobat 9

    ADMDialogRef equivalent in Acrobat 9. can any one help me?

  • Design View

    Hello. In Dreamweaver CS 4 "Design" View have some errors. In screenshots orange squere  - Firefox; green squere - Dreamweaver First screenshoot: Backround color: none Backround image repeat-x Problem: Below backround image there is light braun. In F

  • HT201365 I upgraded to ios 7, how do I open my phone when that code doesn't work?

    Just up-graded to iOS 7, entered a passcode. Now the phone will not unlock with that code. What do I do?

  • Integrating a Predictive Dialer with COD

    We are in the process of implementing Contact on Demand with CRM OnDemand. We have users that do nothing but make outbound calls and we were going to load campaigns and use leads to make those calls and record dispositions. We would also like to use