Need to create Mail User that Only Sends

is there a way i can set up a user that can only send emails but not receive? the user does not want any emails to come to this address, but needs to send information occasionally to others via this address.
i guess this would be much like the 'automated' emails sometimes received that say 'do not reply to this sender'
thanks in advance

One way to do this would be to just set up a mail account in your favorite email app, and set all the user information as you like (i.e. name, reply-to address, etc.). Then in Server Admin, just put that user's ip in the list of machines that are allowed to relay. No need to even set up a real account on the server for that user.
MacBook Pro   Mac OS X (10.4.6)  

Similar Messages

  • How to create mail user who only send or receive email to local user

    I setup iplanet message server 5.2 SP1 for window 2000. It work right. But I don't know how to setup a mail user which can only send/receive email to/from local email user(user from the same message server). Thanks.

    The easiest way I can think of, would be to isolate these users to a different mail server.
    Once you isolate them, you can isolate that server so that it cannot connect to the external world, but only to your other servers, so local mail would be allowed, but not external mails.
    I can't think of any way to achieve what you're asking for in the same server that allow some users full access.

  • I need to create a link which will send on email

    hi All
    i need to create a link which will send to email after click to that link it will directly opent that portlet so i want to know how to create
    runtime link.

    What you're referring to is a drop down menu. Those can't be created normally in iWeb. They can be added to a iWeb page but require an HTML snippet and javascript. Some possible javascript solutions have been posted in this forum. Search for drop down menu. Also do a Google search for drop down menu to get a number of sites with possible solutions.
    Or, you can create a separate Residential page and put photos of windows, shower doors, etc. on it and use them as links to the pages for the windows, shower doors. Those pages don't have to be included in the navbar. You can turn it off in the Inspector/Page/Page pane.
    Also see Section 9 of this iWeb FAQ site.
    Happy New Year

  • HT1752 I have forgotten my admin password and need to create another user

    I have forgotten my admin password and need to create another user. Have no disks to boot from!!

    You need an installer disc in order to reset an admin password. I don't know if the following will work on your system, but give it a try:
    You can also reset the password by printing out (or writing down) and carefully following these steps.
    First, find the short name of the admin user on the machine. The easiest way of doing this is by looking at what their directory is called in the Users folder.
    Now, start up the computer while holding down Cmd-S. It should boot into a command line. (If it doesn't, you may need to reset the firmware password, which is detailed elsewhere.)
    Type these exact lines:
    mount -uw /
    ifconfig lo0 up
    cd /var/db/netinfo
    netinfod -s local
    Now you'll need that short name. (You did write it down, didn't you?) Type "passwd", a space, and the short name of the admin. For example, if the admin was - rather prosaically - called "admin", you'd type "passwd admin".
    The computer will now prompt you to change the password for "admin" (or whatever the short name was). Go ahead and type a new password.
    Now, type:
    sync
    reboot
    and the machine will reboot. The admin password should now be changed.

  • How do I create a rule that only applies to one mailbox?

    How do I create a rule that only applies to one mailbox? For example deleting the messages in the box after 10 days.

    You don't.  Rules are applied only to new incoming messages, or manually to the selected messages.  They cannot be used to delete messages after an amount of time.  You could create an AppleScript or Automator action that would do that and then use a recurring event in iCal to run that script.

  • How to create a user that can login the LDAP?

    I want to create a user that can login the OID/LDAP. I know how to create a user, it is allowed to login OIDDAS, but I also want the user to grant access to ldap directly. How do i do that?
    And how can I give it read rights and or update/delete rights on a specific tree?
    Regards
    Eelco

    Eelco,
    did you see the OiD developers guide? Here you find some examples how to create users in OiD using pl/sql or java.
    http://download-west.oracle.com/docs/cd/A97329_03/manage.902/a95193/smplcode.htm#637294
    how to use directory access control can be found in
    http://download-west.oracle.com/docs/cd/A97329_03/manage.902/a95192/access.htm#1054232
    --Olaf

  • Creating a user thats saved to a table? possible or not???

    Ok.....so my uni assignment is to make an SQL database and then a front end in access...for a shoe store...i can make test databases and get access to connect to the sql....yay
    now im never going to get a brilliant grade because im TERRIBLE at all sort of programming (im doing computer networks not programming yet i have to do lots :(..)..............BUT one thing in the assignment states is that the shoe store would like cutomers to 'sign up' as it were....if i could get it to work that would be like one 'trick' thing that might get me a couple more marks...
    SO can i create a user that is saved to the customer table easily? or...would it take lots of knowledge and years of experience or can someone point me to some sample code or a tutorial...????
    or can this not be done and im barking up the wrong tree here?
    thanks in advance to everyone who is better at this than me!!!

    You can create a simple form with two text item each to input userid (text1) and password (text2)
    You add a submit button and you create a WHEN_BUTTON_PRESSED trigger
    In that trigger you code something like this
    Insert into Customer_Table (UserId,Password)
    Values (text1.text,text2.text)
    commit;
    there you are... you can add many users as you want.
    and when you create log in page. you create also two text item each to input userid (text1) and password (text2)
    You add a submit button and you create a WHEN_BUTTON_PRESSED trigger
    In that trigger you code something like this
    Declare
    VarID Varchar2....
    VarPass Varchar2.....
    Begin
    select UserId,Password into VarID,VarPass where UserId = VarID
    exception
    when others then
    RAISE .... 'Wrong ID'
    End;
    If VarPass = text2.text then 'OK' else 'Wrong Password'

  • Need to create a user  from procedure

    Hi to all,
    I need to create a user from oracle stored procedure. i am able to create a proceure successfully, when i am executing the procedure i cant able to successfully run it. it is throwing insufficient privileges. i tried to run the procedure from system user also.
    The below one is the procedure.
    create or replace procedure sp_createsuser(username varchar2)
    as
    begin
    execute immediate 'create user ' || username || ' identified by ' || username;
    end;
    the code is parsed successfully and created without any errors
    when trying to executing it throwing error as insufficient privileges
    the user is dba privileged and tried this procedure to execute from the system user also, getting the same output.
    I need to know whether it is possible to create user from a procedure, package or a trigger.
    Thanks in advance.

    Hi,
    I guess the message is pretty clear !! you lack privilege.
    SQL> conn imx/imx
    Connected.
    SQL>
    SQL> create user testproc identified by testproc;
    create user testproc identified by testproc
    ERROR at line 1:
    ORA-01031: insufficient privileges
    SQL> create or replace procedure sp_createsuser(username varchar2)
      2  as
      3  begin
      4  execute immediate 'create user ' || username || ' identified by ' || username;
      5  end;
      6  /
    Procedure created.
    SQL> exec sp_createsuser('testproc');
    BEGIN sp_createsuser('testproc'); END;
    ERROR at line 1:
    ORA-01031: insufficient privileges
    ORA-06512: at "IMX.SP_CREATESUSER", line 4
    ORA-06512: at line 1
    SQL> conn sys/******* as sysdba
    Connected.
    SQL> grant create user to imx;
    Grant succeeded.
    SQL> conn imx/imx
    Connected.
    SQL> exec sp_createsuser('testproc');
    PL/SQL procedure successfully completed.
    SQL> conn sys/syssys as sysdba
    Connected.
    SQL> select username from dba_users where username like 'TESTP%';
    USERNAME
    TESTPROC
    SQL>Regards

  • Is it possible to make a shopping cart that only sends me the info

    I'm trying to make a shopping cart that only sends me the info for my photography site I then deliver the photo to the client in person

    Hi,
    Please take look to this thread, might be helpful
    shopping cart without payments.

  • Need to create a user who will run the logminer what rights should be given

    I Need to create a user who will run the logminer what specific rights should be given in order to run the logminer and query the logminer views. Cant give the sysdba privilages.
    Any help in this regard will be really appericiated.
    Thanks

    I have given the following privilages
    GRANT CREATE SESSION TO NEW_USER;
    GRANT SELECT ANY TABLE TO NEW_USER;
    GRANT EXECUTE ON DBMS_LOGMNR TO NEW_USER;
    GRANT EXECUTE ON SYS.DBMS_LOGMNR_D TO NEW_USER;
    GRANT SELECT ON V_$SESSION TO NEW_USER;
    GRANT SELECT ON V_$ARCHIVED_LOG TO NEW_USER;
    GRANT SELECT ON V_$LOG TO NEW_USER;
    GRANT SELECT ON V_$LOGFILE TO NEW_USER;
    GRANT SELECT ON V_$LOGMNR_CONTENTS TO NEW_USER;
    but when i try to add the logfile it gives me the following error
    ERROR at line 1:
    ORA-06550: line 1, column 85:
    PLS-00201: identifier 'DBMS_LOGMNR.NEW' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    What additional rights can i gave to run this
    Thanks

  • I need to create an APP that runs on an Android Tablet to play mp4 video stored on the SDCARD.  I ha

    I need to create an APP that runs on an Android Tablet to play mp4 video stored on the SDCARD.  I have tried using VideoPlayer and passing NULL to the Connect() method, but while this will play a video from a shockwave SWF it will not play it as an APP from a .apk file.

    There are several apps in the App Store. Look at them to see what might meet your needs. There is a keynote app that might be best for you.

  • I need to create a schedule that will be performed every day

    Hi,
    I need to create a schedule that will be performed every day. Must start at a specified time and finish their work at a certain time. Joby hooked to this schedule must do their work in a loop, until he completed the work to the procedure. Do you have any solution?

    6e4e5455-0183-4163-be68-1e68fc529042 wrote:
    Hi,
    I need to create a schedule that will be performed every day. Must start at a specified time [...]
    Easy, use DBMS_SCHEDULER to schedule the job to start at a particular time every day.
    [...] and finish their work at a certain time. [...]
    What should it do if it finishes early? What should it do if it hasn't finished its work by the given time? There may be things you can do to make it crash out at a given time - but its helpful to know what your aims are first.
    Joby hooked to this schedule must do their work in a loop, until he completed the work to the procedure. Do you have any solution?
    I don't have a clue what that last sentence means, let alone a solution.

  • Using Cap6, need to create menu screen that allows user to click a button, branch to other screens, and return to main menu. When returning to the main screen the button that was clicked will be grayed out or inactive.  How do I do this?  I created image

    I am trying to emulate a piece of equipment.  I need the user to be able to click on specific buttons that will take the user to another screen(s).  After viewing those screens the user will be directed back to the main screen where the user would know which buttons had been pressed and which still needed to be pressed.  I create image buttons with the 3 states - that worked except when the user returns the slide is reset and so the user does not see the 3rd state of the button.  How can I get that 3rd state to stay after user returns to the main screen? 

    Hi Elizabeth,
    Since I just did this morning what you are currently attempting to do, I thought I'd share my method.  I must provide a disclaimer and tell you that I am not an expert in Captivate advanced actions--like you, I am still figuring them out.  However, I am happy to share here anything I have learned thus far.
    First, here is what my initial slide looks like (see interaction slide below).  I created all of the icons (including the 'grayed out' icon on the second screenshot) in a few minutes using Adobe Illustrator. The icons have been imported as custom multi-state buttons so that I could have the desired effect when the user hovers over the image--the yellow 'explore' flag appears only when the mouse is over the icon. When the learner click either image, they are sent to the corresponding slide.  Once both slides are viewed, a 'continue' button will appear at the base of the screen (something I've not figured out--I sent an email to Lieve begging for some guidance). 
    The initial slide (interaction slide):
    Second, here is a depiction of what happens when the learner returns to the interactive slide from the content slide (see image below):  Once the learner visits the 'Battery Content' slide and then returns to the interaction slide, the images have changed.  The multi-state button is hidden (through the advanced action), the replacement image (the image with the completed banner over it) is shown, and a hidden click box to allow the user to return to the previously visited page (just in case they desire to do that) is "shown" to allow navigation since the button is no longer there (because it is magically hidden).
    Content Slide 1:
    Remember, there may be an easier way to do this in Captivate.  I am using Cp6 for this module.
    1. I created two user variables as follows
    Name: v_batteryExplore
    Value: 0
    Name: v_fuelExplore
    Value: 0
    2. I created an advanced action for each as shown below (showing only one--duplicate the first and change the names to match the content):
    Credit: I learned these steps from @Lilibiri and Dr. Pooja Jaisingh!
    I have also noticed that it matters where the buttons are located on the timeline.  It seems best to have buttons above all other content.  Not sure why, but I have had images not appear when I have not done this.
    And the last step you do not want to forget; you need to remember to tell Captivate to use the action.
    As a final note, remember that the elements you do not want to appear on the initial screen must not be initially visible.  Make sure to set them to invisible by removing the checkmark in the 'Visible in output' box located next to the button name.  In my case, the image of the completed battery and the invisible button to allow a revisit of content was initially hidden.  Here is a final screenshot of my timeline for this interaction.  I hope this information helps you!

  • Create a user that can only access to one schema - please help!!

    Hi all,
    I want to create one user in a Oracle DB that can only access to one schema. I did the following:
    CREATE USER "TEST" PROFILE "DEFAULT"
    IDENTIFIED BY "test" DEFAULT TABLESPACE "USERS"
    TEMPORARY TABLESPACE "TEMP"
    ACCOUNT UNLOCK;
    GRANT SELECT ON "TESTDTA"."F0007" TO "TEST"
    GRANT "CONNECT" TO "TEST";
    I have done a test and the user TEST can access all schemas, when I only gave explicit permissions to the schema TESTDTA.
    Any suggestion/clarification???
    Many thanks in advance.
    Víctor.

    Hello Andreas and Pavan,
    I have launched the query:
    select * from dba_tab_privs
    where grantee = 'PUBLIC'
    and owner = 'PRODDTA'
    and table_name= 'F0009';
    And the result:
    GRANTEE OWNER TABLE_NAME GRANTOR PRIVILEGE GRA HIE
    PUBLIC PRODDTA F0009 PRODDTA ALTER NO NO
    PUBLIC PRODDTA F0009 PRODDTA DELETE NO NO
    PUBLIC PRODDTA F0009 PRODDTA INDEX NO NO
    PUBLIC PRODDTA F0009 PRODDTA INSERT NO NO
    PUBLIC PRODDTA F0009 PRODDTA SELECT NO NO
    PUBLIC PRODDTA F0009 PRODDTA UPDATE NO NO
    PUBLIC PRODDTA F0009 PRODDTA REFERENCES NO NO
    PUBLIC PRODDTA F0009 PRODDTA ON COMMIT REFRESH NO NO
    PUBLIC PRODDTA F0009 PRODDTA QUERY REWRITE NO NO
    PUBLIC PRODDTA F0009 PRODDTA DEBUG NO NO
    PUBLIC PRODDTA F0009 PRODDTA FLASHBACK NO NO
    11 rows selected.
    Then I supose that I have to change the value on column GARANTEE. How can I do that?
    Thanks a lot for your help!!
    Víctor.

  • I need to create a user account for my wife that initially duplicates mine

    Thank you in advance for your thoughts and/or links.
    It is becoming more and more "the norm" for me to come upstairs to my MAC and find that my wonderful wife has five or more Safari windows open, three Word documents open, Mail up and running, etc...
    I certainly don't mind her using the computer, but I really like to come to my MAC with it having a nice clean desktop and ready for me to go at video editing etc.
    I have set her up a user account, but of course all our bookmarks, documents, etc. are under my username.
    Is there a script or an easy-to-follow step-by-step process to start her out with all the same Mail preferences, messages, Safari bookmarks, access to documents, etc.?
    I read one response about iTunes and iPhoto that I really liked - he/she set up a shared user (or something like that) and used it for every users iTunes & iPhoto library. I guess the same thing could be accomplished by sharing ones iTunes and iPhoto libraries...
    Anyway, you help/links would be appreciated.
    Dwaine

    I can see how it'd be possible to copy of one user's info into another's folder by temporarily changing ownership permissions. This would get you to your "start her out with all the same...." point.
    itunes/iphoto libraries would be straightforward, as you've found - sharing documents too.
    It can be done - but if you'll forgive me - I'll wait a day or so in case someone posts an easy- no playing with permissions-solution that saves you a lot of hassle.
    Another option is to set up a "video editing" user that you use when you want a clear desktop/no other programs loaded etc environment. You can enable fast user switching in sys prefs-accounts - so it's really no bother to change quickly; & have your various video stuff easily accessible to you - yet switch back almost instantly to a normal account with mail/safari etc all running. This may be a better idea if your editing needs loads of memory & pushes the processor to near it's limit.

Maybe you are looking for