Email only user

Can anyone tell me how to set up an e-mail only user, except as an alias?
I'd like to set up a mailbox that anyone in the family can access for those occasions where we want to use a common e-mail address.  But I don't want to make any other services available (such as login).
If I create a user and don't allow login, I can't check e-mail, but if I allow login, the user appears in the list of network users on the login screen!
Probably something obvious, but I haven't found it!

Thanks again. I'm not sure that public dns is the issue. I CAN send public email to @mail.monkeysaddle.com, but I CANNOT send public email to @monkeysaddle.com. Adding the name server registrar-servers.com to the zone monkeysaddle.com. doesn't change this.
Here's what's going on:
LAN email to @mail.monkeysaddle.com works.
Public email to @mail.monkeysaddle.com works.
LAN email to @monkeysaddle.com works.
Public email to @monkeysaddle.com DOES NOT work.
The bounced error message from public to [email protected] looks like:
THIS IS A WARNING MESSAGE ONLY.
YOU DO NOT NEED TO RESEND YOUR MESSAGE.
Delivery to the following recipient has been delayed:
     [email protected]
Message will be retried for 2 more day(s)
Technical details of temporary failure:
Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 450 450 4.1.1 <[email protected]>: Recipient address rejected: unverified address: unknown user: "[email protected]" (state 14).
And I also believe that public DNS is working fine on the server. For example, nslookup for this site yields:
$ nslookup discussions.apple.com
Server:        192.168.1.2
Address:    192.168.1.2#53
Non-authoritative answer:
discussions.apple.com    canonical name = discussions.apple.com.edgekey.net.
discussions.apple.com.edgekey.net    canonical name = e4233.b.akamaiedge.net.
Name:    e4233.b.akamaiedge.net
Address: 184.51.65.54
I've tried turning on all debug-level error logging for SMTP, but I don't even see any SMTP errors when I attempt to send public email to @monkeysaddle.com, and neither do I receive a message failure except in the one or two instances respresented above (and I've sent a LOT of emails at this point).
Message was edited by: S.T.Smith

Similar Messages

  • How I can make safari saving only users or emails from the login?

    Hello
    I want that safari will save my emails and users that when I will type in login form the first character of my user or email it will show me the emails or users that start with this character.
    I know that there is an option in the settings for saving emails and passwords but I want safari will save only the emails or users and not the passwords.
    Thank you in advance

    At a minimum, the creation of the TcpClient will need to change its parameter to the name of server you want to use:
    TcpClient tClient = new TcpClient("gmail-smtp-in.l.google.com", 25);

  • Can MobileMe email-only accounts access iCloud?

    So I have a MBP running Lion with a MobileMe account and my wife has an email-only address under that MobleMe account. We also sync Address Books, all accessed thru her old MB Core Duo running Snow Leopard, not upgradeable to Lion. If I switch to iCloud will she still be able to access Mail and sync Address Book? Can't find a definitive answer anywhere in the Apple iCloud support pages.... Help please!

    I couldn't either. With help from others and a MacWorld article finally got it figured out: You DO want to have two iCloud accounts, but you want one iCloud account to be the source for the Contacts, Calendars, Bookmarks, iTunes, and PhotoStream on both machines. There is a solution.
    The issue: MobileMe account including its own email account, with the user also paying $10 for a second email-only account. The MobileMe account is used for joint Contacts, Calendar, and Safari Bookmarks on two machines, while the main MobileMe mail account was used for mail on one machine and the email-only account was used for mail on the other machine.
    We wanted to upgrade to iCloud on both machines and still have joint Contacts, Calendar and Safari bookmarks, plus share our iTunes account and use the new PhotoStream feature on both machines - but preserve the two individual email accounts.
    Solution: On the first machine, move to iCloud with everything, using the main MobileMe account name and password. On the second machine, USE THE EMAIL-ONLY ACCOUNT to create a new iCloud account using the username and password for the email only account. That appears to be the critical step: you need to create that new iCloud account with the username and password for the email only account FIRST rather than migrating to iCloud on the second machine using the main MobileMe account name, or else you may permanently lose that second email-only account!
    After that, it's all a matter of tweaking the account settings on the other apps to direct to the iCloud account on the first machine.
    You will get a screen asking if you want to delete the existing Contacts on that second machine. Do so: DELETE THE EXISTING CONTACTS on that second machine. (Only after backing up your Address Book by using the export function just to be safe.)
    Then, WITHIN EACH APPLICATION - Address Book, iTunes, Calendar, Safari - go to the Preferences and set them so that they are tied to the iCloud account for the first machine.
    You may need to check your Preferences: for a little while my wife was getting both my mail and hers, until I noticed that within Mail.app she had two accounts: her iCloud account AND my iCloud account. I deleted my account on her machine.

  • [Forum FAQ] How do I send an email to users when the data in the report have been changed in Reporting Services?

    Introduction
    There is a scenario that the data in the report changes infrequently, so the users want to be informed and get the most updated data once the data changes. By default, report server always run the report with the most recent data. Is there a way that we
    can subscribe the report, so that we can send an email to users when the data in the report has been changed?
    Solution
    To achieve this requirement, we can create a subscription for the report, then create a trigger in the table which including the report data. When this table has data insert, update or delete, it will be triggered and execute the subscription to send email
    to users.
    In the Report Manager, create a subscription for the report and make it only execute one time.
    When we create a subscription, a corresponding SQL Agent job will be created. Then we can use the query below to find out the job based on ScheduleId:
    -- List all SSRS subscriptions
    USE [ReportServer];  -- You may change the database name.
    GO 
    SELECT USR.UserName AS SubscriptionOwner
          ,SUB.ModifiedDate
          ,SUB.[Description]
          ,SUB.EventType
          ,SUB.DeliveryExtension
          ,SUB.LastStatus
          ,SUB.LastRunTime
          ,SCH.NextRunTime
          ,SCH.Name AS ScheduleName   
              ,RS.ScheduleId
          ,CAT.[Path] AS ReportPath
          ,CAT.[Description] AS ReportDescription
    FROM dbo.Subscriptions AS SUB
         INNER JOIN dbo.Users AS USR
             ON SUB.OwnerID = USR.UserID
         INNER JOIN dbo.[Catalog] AS CAT
             ON SUB.Report_OID = CAT.ItemID
         INNER JOIN dbo.ReportSchedule AS RS
             ON SUB.Report_OID = RS.ReportID
                AND SUB.SubscriptionID = RS.SubscriptionID
         INNER JOIN dbo.Schedule AS SCH
             ON RS.ScheduleID = SCH.ScheduleID
    ORDER BY USR.UserName
             ,SUB.ModifiedDate ;
    Create a trigger in the table which including the report data.
    CREATE TRIGGER reminder
    ON test.dbo.users
    AFTER INSERT, UPDATE, DELETE
    AS
    exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    Please note that the command ‘exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'’ is coming from the job properties. We can go to SQL Server Agent Jobs, right-click the corresponding job to open
    the Steps, copy the step command, and then paste it to the query.
    Then when the user table has data insert, update or delete, the trigger will be triggered and execute the subscription to send email to users.
    References:
    Subscriptions and Delivery (Reporting Services)
    Internal Working of SSRS Subscriptions
    SQL Server Agent
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • SharePoint 2010 List View Web Part not showing for read-only users?

    Hello all,
    I have List View Webparts on my Blank Web Part page, and it's not showing for Read-Only users.
    Is this intended by Microsoft or is it a bug?
    Thank you!

    Hi,
    According to your post, my understanding is that the read only user could not see the list view web part.
    Per my knowledge, the issue may be cause that the user do not have the proper permission for the list.
    1. Check whether the user can access the list.
    2. Check whether the user can view all the items instead of partial items in the list.
    3. Check whether there are some fields refer to other lists or terms, especially the lookup field or managed metadata filed.
         If that is the case, make sure the user can access the lookup list.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • How do I create a PDF form for submission that can be used by Acrobat Reader only users?

    I am attempting to create a PDF document in Acrobat Pro with fields that can be submitted (via email) by users using only Acrobat Reader.
    I have tried changing the properties of the 'Submit' button, although I am not sure what I am doing wrong.
    Can anyone please help?
    C.

    I created a form using Adobe LiveCycle and added the submit via e-mail button. One change which I made was in the XML script I changed submission type to pdf, so that thepdf form itself would be e-mailed. This works fine if I use Adobe Pro 8, but when I tried the same using only Adobe Reader 7.0, it would not let me e-mail the form along with a message "This operation is not permitted".
    Any comments?
    Thanks

  • Problem with Read-only user being able to add and delete files and folders.

    The setup:
    Computer #1
    iMac (intel) running 10.5.5
    File sharing ON
    Sharing folder on external USB drive called 'iTunes' (but not the drive volume itself)
    Users:
    - Everyone = Read Only
    - Admin(me) = Read/write
    - UserA = Read Only (with account PW and username identical to local login for computer below)
    Computer #2
    UserA's iBook G4 running 10.4.11
    When I go to finder>network>iMac>connect it prompts me to login which I do and then select 'iTunes' folder which is visible and mounts successfully. I can see all files, access them all. Life seems great. Then I discover that I can also modify and delete files from the iBook, and create and delete directories.
    I'm new to networking and although I've setup and managed minimal networking tasks on PCs before, this is my first foray into the Mac networking world. Please help.
    What am I doing wrong? What haven't I set?
    Thanks in advance.

    Sorry, I should have clarified this in the first email.
    When I login from the iBook, I am logging in under a read-only user (not as myself, who is admin on the iMac). The user on the iBook has only been given read-only permissions on the iMac yet is able to add and delete files.
    This read-only login/PW however, is the admin account on the iBook, but that shouldn't allow this person to write on the iMac so far as I understand things...right?

  • Read-only user for Weblogic 6.1 sp2 console

    Is there a way to restrict a user to read-only priv. on the weblogic
    console? Either by using acl's or other means.
    Thanks in advance,
    Brown

    "Seb" <[email protected]> wrote in message news:3f33c3e2$[email protected]..
    >
    Hello,
    I'd like to create a read-only user for a customer that gives him acces tothe
    Console only for reading all the configuration. I don't him to modifyanything
    Is there a simple way to do this ?A previous post mentioned that this is not possible in 6.1.
    Brown,
    This functionality is not available in 6.1. The newest version of wls
    8.1 has this feature depending on the role that the user is in.
    ~satya

  • Read only user for Weblogic Server Console (6.1)

    Hello,
    I'd like to create a read-only user for a customer that gives him acces to the
    Console only for reading all the configuration. I don't him to modify anything
    Is there a simple way to do this ?
    Thanks in advance.
    --Seb

    "Seb" <[email protected]> wrote in message news:3f33c3e2$[email protected]..
    >
    Hello,
    I'd like to create a read-only user for a customer that gives him acces tothe
    Console only for reading all the configuration. I don't him to modifyanything
    Is there a simple way to do this ?A previous post mentioned that this is not possible in 6.1.
    Brown,
    This functionality is not available in 6.1. The newest version of wls
    8.1 has this feature depending on the role that the user is in.
    ~satya

  • Ping all the servers into SP farm using powershell script and send email only if any of them failed to ping.

    Hi,
    i am trying to have such kind of functionality, so that if any servers in sharepoint farm failed then it will send notification email to specific user that server is not able to ping or failed. Right now following script is working but it sending mail either
    servers are all running or dead. But i would like to send email only if any of the server failed to ping. what i need to modify following code to work.
    Thanks in advanced
    #### Provide the computer name in $computername variable 
    $ServerName = "localhost","Dc-XX"  
    $smtp = "ExchChange" 
    $to = "[email protected]
    $from = "[email protected]
    $sub = " Server Status" 
    $body = @" 
    ##### Script Starts Here ######   
     foreach ($Server in $ServerName) { 
                        if (test-Connection -ComputerName $Server -Count 2 -Quiet ) {  
                            $body += write-output "$Server is alive and Pinging `n"  
                                } else { $body += Write-output "$Server seems dead not pinging `n"  
    $body 
    send-MailMessage -SmtpServer $smtp -To $to -Subject $sub -Body $body  -From $from   

    you need to put a check on the send-mailmessage if no ping fails then exit else send the email with message.
    also try this script, performing the the same thing but more granular way
    http://gallery.technet.microsoft.com/scriptcenter/d0670079-6158-4dc5-a9da-b261c70e4b7d#content
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Email-only MobileMe - movement to iCloud?

    Hi,
    I have a mobileMe account with an additional mobileMe email-only add-on that my wife uses as her email address.  I can't work out how this translates into iCloud. 
    I only want one iCloud account, so both myself and my wife have the same calendars, bookmarks, etc.  However, we both want separate email addresses as we do now.
    Is this what will happen when we convert to iCloud?
    Duncan

    Finally got it figured out: You DO want to have two iCloud accounts, but you want one iCloud account to be the source for the Contacts, Calendars, Bookmarks, iTunes, and PhotoStream on both machines. There is a solution.
    The issue: MobileMe account including its own email account, with the user also paying $10 for a second email-only account. The MobileMe account is used for joint Contacts, Calendar, and Safari Bookmarks on two machines, while the main MobileMe mail account was used for mail on one machine and the email-only account was used for mail on the other machine.
    We wanted to upgrade to iCloud on both machines and still have joint Contacts, Calendar and Safari bookmarks, plus share our iTunes account and use the new PhotoStream feature on both machines - but preserve the two individual email accounts.
    Solution: On the first machine, move to iCloud with everything, using the main MobileMe account name and password. On the second machine, USE THE EMAIL-ONLY ACCOUNT to create a new iCloud account using the username and password for the email only account. That appears to be the critical step: you need to create that new iCloud account with the username and password for the email only account FIRST rather than migrating to iCloud on the second machine using the main MobileMe account name, or else you may permanently lose that second email-only account!
    After that, it's all a matter of tweaking the account settings on the other apps to direct to the iCloud account on the first machine.
    You will get a screen asking if you want to delete the existing Contacts on that second machine. Do so: DELETE THE EXISTING CONTACTS on that second machine. (Only after backing up your Address Book by using the export function just to be safe.)
    Then, WITHIN EACH APPLICATION - Address Book, iTunes, Calendar, Safari - go to the Preferences and set them so that they are tied to the iCloud account for the first machine.
    You may need to check your Preferences: for a little while my wife was getting both my mail and hers, until I noticed that within Mail.app she had two accounts: her iCloud account AND my iCloud account. I deleted my account on her machine.

  • Ichat with an email only .mac account?

    Is it possible to use an email only .mac account with ichat? I have tried to look in this forum, but all I could find referenced aliases, which I know you can't. I have also done Google searches and talked with other ichat users, some say yes and some say no. I have tried repeatedly to set up an ichat account using my email only .mac account but with no success so far. Am I doing something wrong, or is it truly unable to be done?
    Thanks,
    Eric

    It has to be a Full paid for account, A lapsed account or a trial Account (which will be able to work after the sixty days).
    It can not be a sub email account.
    9:11 PM Sunday; October 21, 2007

  • BT email address / user ID not recognised

    I have had the same BT email address for in excess of 10 years now, but this week when accessing through Outlook (as I do daily) I was asked for my password which never happens.  I entered my password but it rejects that.  I have tried resetting my password but when being asked to confirm my email address, I receive an error message saying "Sorry, we do not recognise that email address/user ID."  The same thing has happened to my husband.  We have both had lengthy telephone calls with BT regarding this and are told that our email addresses seem to have somehow been deleted?!  Neither of our email addresses are recognised and appear to no longer exist, nor does it appear they can be reinstated. Having had the same address for so many years, I am loathe to have to change email addresses, and am currently awaiting some important emails. Any suggestions?   Can I get my email address back?  How has this happened?   

    Lisa2012 wrote:
    I have had the same BT email address for in excess of 10 years now, but this week when accessing through Outlook (as I do daily) I was asked for my password which never happens.  I entered my password but it rejects that.  I have tried resetting my password but when being asked to confirm my email address, I receive an error message saying "Sorry, we do not recognise that email address/user ID."  The same thing has happened to my husband.  We have both had lengthy telephone calls with BT regarding this and are told that our email addresses seem to have somehow been deleted?!  Neither of our email addresses are recognised and appear to no longer exist, nor does it appear they can be reinstated. Having had the same address for so many years, I am loathe to have to change email addresses, and am currently awaiting some important emails. Any suggestions?   Can I get my email address back?  How has this happened?   
    Hi. Welcome to the forums.
    Have you tried access your emails using a browser via webmail ? Sometimes the email address/password combination fails for a fleeting time, sometimes lasting a few days, usually only affecting access from mail client programs such as Outlook.
    If you can access webmail, then it's a problem that has been happening for a number of months now.
    A quick way to the webmail access is point your browser ay http://mail.yahoo.com and enter your full email address as the Yahoo! ID.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • If the iOS app I create emails the user, can the user upgrade from the link in the email or is that against the guidelines?

    I want to create an iOS app and for a variety of reasons (subscription, multiplatform, etc) I can't use the Apple app-store payment sytem. 
    However, if the user creates and account with my iOS app and we then email the user at a later date.  Can they upgrade from the link in the email, or is that against Apple policy as well? 
    Thanks!
    Ryan

    i am faceing a file download problem too..........
    i am protecting jboss application,,,,using apache, and jk....
    all work fine except for open a file(word,excel,txt,etc).
    Disable the policy domain, everything goes just fine. microsoft file dialogue opens,you can open the file directly, or save it to your computer........
    Enable the policy domain,, you can only save the file to your computer(file content is also correct),,,but cannot open it directly.it says the file path could not be found......but if the word/excel application is already running, you can open it fine...
    PS:not a computer issue,,,every computers faceing the same problem
    any avoice from you is good to me...............thanks very much

  • MobileMe "email only account" on iCloud?

    OK, I've converted my MobileMe account on my laptop and iPhone to iCloud. Am already enjoying the PhotoStream feature! My question: We have an iMac running Lion at home, and my wife uses it as her primary computer. Under MobileMe we've had an "email only account" we're paying extra for. We want to keep her separate email account on the iMac and eventually be able to sync it through iCloud with her iPad when she gets one for Christmas, BUT we want everything else on the iMac - photos, Contacts, Calendars, etc. - to sync with MY iCloud account. How do we accomplish this?
    Until we can figure this out, we're leaving the iMac alone and not converting it to iCloud. Thanks in advance for any answers!

    Thanks, that was a helpful response! I think we did pretty much the same thing you suggested.
    The issue: MobileMe account including its own email account on one computer, with the user also paying $10 for a second email-only account on another computer. The MobileMe account is used for joint Contacts, Calendar, and Safari Bookmarks on two machines, while the main MobileMe mail account was used for mail on one machine and the email-only account was used for mail on the other machine.
    We wanted to upgrade to iCloud on both machines and still have joint Contacts, Calendar and Safari bookmarks, plus share our iTunes account and use the new PhotoStream feature on both machines - but preserve the two individual email accounts.
    Solution: On the first machine, move to iCloud with everything, using the main MobileMe account name and password. On the second machine, USE THE EMAIL-ONLY ACCOUNT to create a new iCloud account using the username and password for the email only account. That appears to be the critical step: you need to create that new iCloud account with the username and password for the email only account FIRST rather than migrating to iCloud on the second machine using the main MobileMe account name, or else you may permanently lose that second email-only account!
    After that, it's all a matter of tweaking the account settings on the other apps to direct to the iCloud account on the first machine.
    You will get a screen asking if you want to delete the existing Contacts on that second machine. Do so: DELETE THE EXISTING CONTACTS on that second machine. (Only after backing up your Address Book by using the export function just to be safe.)
    Then, WITHIN EACH APPLICATION - Address Book, iTunes, Calendar, Safari - go to the Preferences and set them so that they are tied to the iCloud account for the first machine.
    You may need to check your Preferences: for a little while my wife was getting both my mail and hers, until I noticed that within Mail.app she had two accounts: her iCloud account AND my iCloud account. I deleted my account on her machine.

Maybe you are looking for

  • No wi-fi on ipod touch

    I have had my ipod touch for about 7 months now and until recently I have had no problems with it. For some reason it says no wi-fi. I have no problem with the internet connection on other devices in my house and the ipod has no internet connection w

  • Session Implementation in flex application

    Hi , I m getting problem in how to implement session in flex application. Thanks in advance

  • IPhoto 5 supported file formats

    I've joined a few photos together in Photoshop to make a landscape & don't want to add any more compression to the shots (by re-jpegging a jpeg etc.) so I was planning to save the final file as a TIF (or TIFF?) file but when I do so & try & import it

  • Resend a failed message

    We have an IDOC to File Scenario. We are FTPing the file on the Receiver end. When the receiver System is Down after certain number of attempts my job fails with the red flag. Once the file System is up, how to resend the Faile Message(As it is not p

  • Exc reg updation for trading material

    Hi experts,         I have a trading material, at the time of purchase RG23A reg is updating both quantity and value.         But while sales, RG1 reg is not updating.         As Excise is concerned, at the time of sales the quantity in RG23A should