Simple CGI mail kicking my butt!

I am attempting to impliment a simple CGI mail page on my server.
The code comes from: http://www.boutell.com/email/
I have followed the directions to the letter. When I call up my html form and submit I get this error:
"Email Rejected: The requested destination address is not one of the permitted email recipients. Please read the documentation before installing email.cgi."
this apears to show that the email address in my email.conf does not match the recipient address in my html file. I have gone over and even copied it between files.
As far as I can tell I have this configured correctly. The email.cgi is in the /CGI-Executables/ and it's permissions are 777. My email.conf file is in the proper directory and if I move it or change the name I get an error that it is not found.
This is so simple I cannot find what I have missed.
Help please
Xserver G5   Mac OS X (10.4.7)  

Well, you're right about it being simple :-P
I just downloaded and tested it out. In my case, I changed the email.conf file to /Library/WebServer/email.conf. It's owned by me with group admin permissions rw-r--r--. In it, I have:<pre>[email protected]
/</pre>I used my actual email address though. The second line just tells it to return to the site's home page when it's done.
The email.cgi file is in /Library/WebServer/CGI-Executables/email.cgi with owner me group admin, permissions rwxrwxrwx.
Then I have an email.html file in /Library/WebServer/Documents, following the template on their web page. The only thing I changed from the template on their web page is the hidden form field "recipient" -- changed it from "changeme" to "[email protected]" (again, substituted with me real email address).
It worked on the first shot. Do you have a target redirect line after the email address in your email.conf file? Did you remember to change the form field in your HTML form to match a legal email address?

Similar Messages

  • FM with code to send a simple text mail to external ID

    Hi All,
    I need a FM with code if possible to send a simple text mail to an external e-mail id or distribution list. I tried using the FM SO_NEW_DOCUMENT_ATT_SEND_API1 and was successfull in sending mail. But it requires attachment.
    I need help to send mail without attachment with code.
    All configurations done at my end.
    Thanks
    Anirban Bhattacharjee

    Hi Anirban,
    Please check this sample code.
    * Email ITAB structure
    DATA: BEGIN OF EMAIL_ITAB OCCURS 10.
            INCLUDE STRUCTURE SOLI.
    DATA: END OF EMAIL_ITAB.
    DATA: T_EMAIL LIKE SOOS1-RECEXTNAM.  "EMail distribution list
    CONSTANTS: C_EMAIL_DISTRIBUTION LIKE SOOS1-RECEXTNAM VALUE
               ‘[email protected],[email protected]’.
    * Initialization
    REFRESH EMAIL_ITAB.
    * Populate data
    EMAIL_ITAB-LINE = ‘Email body text 1’.
    APPEND EMAIL_ITAB.
    EMAIL_ITAB-LINE = ‘Email body text 2’.
    APPEND EMAIL_ITAB.
    T_EMAIL = C_EMAIL_DISTRIBUTION.
    * --- EMAIL FUNCTION ---------------------------------------------------
    * REQUIRMENTS:
    * 1) The user running the program needs a valid email address in their
    *    address portion of tx SU01 under external comms -> SMTP -> internet
    *    address.
    * 2) A job called SAP_EMAIL is running with the following parameters:
    *    Program: RSCONN01  Variant: INT   User: XXX
    *    This program moves mail from the outbox to the mail server using
    *    RFC destination: SAP_INTERNET_GATEWAY_SERVER
    * INTERFACE:
    * 1) APPLICATION: Anything
    * 2) EMAILTITLE:  EMail subject
    * 3) RECEXTNAM:   EMail distribution lists separated by commas
    * 4) TEXTTAB:     Internal table for lines of the email message
    * EXCEPTIONS:
    * Send OK = 0 otherwise there was a problem with the send.
        CALL FUNCTION 'Z_SEND_EMAIL_ITAB'
             EXPORTING
                  APPLICATION = 'EMAIL'
                  EMAILTITLE  = 'Email Subject'
                  RECEXTNAM   = T_EMAIL
             TABLES
                  TEXTTAB     = EMAIL_ITAB
             EXCEPTIONS
                  OTHERS      = 1.
    Function Z_SEND_EMAIL_ITAB
    *"*"Local interface:
    *"       IMPORTING
    *"             VALUE(APPLICATION) LIKE  SOOD1-OBJNAM
    *"             VALUE(EMAILTITLE) LIKE  SOOD1-OBJDES
    *"             VALUE(RECEXTNAM) LIKE  SOOS1-RECEXTNAM
    *"       TABLES
    *"              TEXTTAB STRUCTURE  SOLI
    *- local data declaration
      DATA: OHD    LIKE SOOD1,
            OID    LIKE SOODK,
            TO_ALL LIKE SONV-FLAG,
            OKEY   LIKE SWOTOBJID-OBJKEY.
      DATA: BEGIN OF RECEIVERS OCCURS 0.
              INCLUDE STRUCTURE SOOS1.
      DATA: END OF RECEIVERS.
    *- fill odh
      CLEAR OHD.
      OHD-OBJLA    = SY-LANGU.
      OHD-OBJNAM   = APPLICATION.
      OHD-OBJDES   = EMAILTITLE.
      OHD-OBJPRI   = 3.
      OHD-OBJSNS   = 'F'.
      OHD-OWNNAM   = SY-UNAME.
    *- send Email
      CONDENSE RECEXTNAM NO-GAPS.
      CHECK RECEXTNAM <> SPACE AND RECEXTNAM CS '@'.
    *- for every individual recipient send an Email
    * (see OSS message 0120050409/0000362105/1999)
      WHILE RECEXTNAM CS ','.
        PERFORM INIT_REC TABLES RECEIVERS.
        READ TABLE RECEIVERS INDEX 1.
        RECEIVERS-RECEXTNAM = RECEXTNAM+0(SY-FDPOS).
        ADD 1 TO SY-FDPOS.
        SHIFT RECEXTNAM LEFT BY SY-FDPOS PLACES.
        MODIFY RECEIVERS INDEX 1.
        PERFORM SO_OBJECT_SEND_REC
         TABLES TEXTTAB RECEIVERS
          USING OHD.
      ENDWHILE.
    *- check last recipient in recipient list
      IF RECEXTNAM <> SPACE.
        PERFORM INIT_REC TABLES RECEIVERS.
        READ TABLE RECEIVERS INDEX 1.
        RECEIVERS-RECEXTNAM = RECEXTNAM.
        MODIFY RECEIVERS INDEX 1.
        PERFORM SO_OBJECT_SEND_REC
         TABLES TEXTTAB RECEIVERS
          USING OHD.
      ENDIF.
    ENDFUNCTION.
    *       FORM SO_OBJECT_SEND_REC                                       *
    FORM  SO_OBJECT_SEND_REC
    TABLES  OBJCONT      STRUCTURE SOLI
            RECEIVERS    STRUCTURE SOOS1
    USING   OBJECT_HD    STRUCTURE SOOD1.
      DATA:   OID     LIKE SOODK,
              TO_ALL  LIKE SONV-FLAG,
              OKEY    LIKE SWOTOBJID-OBJKEY.
      CALL FUNCTION 'SO_OBJECT_SEND'
           EXPORTING
                EXTERN_ADDRESS             = 'X'
                OBJECT_HD_CHANGE           = OBJECT_HD
                OBJECT_TYPE                = 'RAW'
                OUTBOX_FLAG                = 'X'
                SENDER                     = SY-UNAME
           IMPORTING
                OBJECT_ID_NEW              = OID
                SENT_TO_ALL                = TO_ALL
                OFFICE_OBJECT_KEY          = OKEY
           TABLES
                OBJCONT                    = OBJCONT
                RECEIVERS                  = RECEIVERS
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                FOLDER_NOT_EXIST           = 4
                FOLDER_NO_AUTHORIZATION    = 5
                FORWARDER_NOT_EXIST        = 6
                NOTE_NOT_EXIST             = 7
                OBJECT_NOT_EXIST           = 8
                OBJECT_NOT_SENT            = 9
                OBJECT_NO_AUTHORIZATION    = 10
                OBJECT_TYPE_NOT_EXIST      = 11
                OPERATION_NO_AUTHORIZATION = 12
                OWNER_NOT_EXIST            = 13
                PARAMETER_ERROR            = 14
                SUBSTITUTE_NOT_ACTIVE      = 15
                SUBSTITUTE_NOT_DEFINED     = 16
                SYSTEM_FAILURE             = 17
                TOO_MUCH_RECEIVERS         = 18
                USER_NOT_EXIST             = 19
                X_ERROR                    = 20
                OTHERS                     = 21.
      IF SY-SUBRC <> 0.
        RAISE OTHERS.
      ENDIF.
    ENDFORM.
    *       FORM INIT_REC                                                 *
    FORM INIT_REC TABLES RECEIVERS STRUCTURE SOOS1.
      CLEAR RECEIVERS.
      REFRESH RECEIVERS.
      MOVE SY-DATUM  TO RECEIVERS-RCDAT .
      MOVE SY-UZEIT  TO RECEIVERS-RCTIM.
      MOVE '1'       TO RECEIVERS-SNDPRI.
      MOVE 'X'       TO RECEIVERS-SNDEX.
      MOVE 'U-'      TO RECEIVERS-RECNAM.
      MOVE 'U'       TO RECEIVERS-RECESC.
      MOVE 'INT'     TO RECEIVERS-SNDART.
      MOVE '5'       TO RECEIVERS-SORTCLASS.
      APPEND RECEIVERS.
    ENDFORM.
    Hope this will help.
    Regards,
    Ferry Lianto

  • POSTing submit info to cgi-mailer

    Hello All,
    I hope you can help please; I am attempting to POST contact
    information that someone enters into my contact page of a Flash
    page. I have attached a screen shot of the ActionScript associated
    with the Submit button that I have added after the onRelease
    statement. This doesn’t work but I have left it there to show
    you what I am trying to do.
    I am not sure that I may be trying to do something that
    can’t be done in this way and must be done through linking to
    a PHP or HTML page that sends the data to the CGI-Mailer sever.
    Would you inform me if this can be done from the flash
    actionscript and if possible could you give me any advice on what I
    am doing wrong or point me in the right direction please?
    Many thanks in advance, kind regards,
    David

    Thank-you for the response is there any chance you could show
    me how to use the LoadVar?? Script to post to the cgi mailer with
    the blank page script, the variables _parent???, with the statement
    “to=rec which seems to be the variable which is set to =
    [email protected], my email address.

  • Simple Java Mail program

    Hi, i have written a simple code to send mail thru java... but it doesnt work... control never comes back after stepping in to the send function.. no exceptions.. no mails sent.. nothin.. cud someone hel me out??
    sometimes i get this exception after a long time:
    javax.mail.MessagingException: Exception reading response;
    nested exception is:
         java.net.SocketException: Connection reset
         at com.sun.mail.smtp.SMTPTransport.readServerResponse(Unknown Source)
         at com.sun.mail.smtp.SMTPTransport.openServer(Unknown Source)
         at com.sun.mail.smtp.SMTPTransport.protocolConnect(Unknown Source)
         at javax.mail.Service.connect(Unknown Source)
    here is the code snippet:
    public void mySend() throws Throwable
    Properties p = System.getProperties();
    p.put("mail.transport.protocol", "smtp");
    p.put("mail.smtp.host", "smtp.gmail.com");
    p.put("mail.smtp.port", "465");
    p.put("mail.smtp.starttls.enable", "true");
    p.put("mail.smtp.auth", "true");
    Authenticator authenticator = new Authenticator()
    protected PasswordAuthentication getPasswordAuthentication()
    return new PasswordAuthentication("vicky.bhandari", "password");
    Session session = Session.getInstance(p, authenticator);
    SMTPMessage message = new SMTPMessage(session);
    InternetAddress fromAddress = new InternetAddress("[email protected]");
    InternetAddress toAddress = new InternetAddress("[email protected]");
    message.setSubject("Test");
    message.addRecipient(Message.RecipientType.TO, toAddress);
    message.setFrom(fromAddress);
    SMTPTransport.send(message);
    Could someone please help me out??

    Hey,
    Im currently having problems with the code below:
    public class SendMail {
         private static final String SMTP_HOST_NAME = "smtp.gmail.com";
         private static final String SMTP_AUTH_USER = "[email protected]";
         private static final String SMTP_AUTH_PWD = "**************";
         public void sendMail(String recipients[ ], String subject, String message , String from) throws MessagingException{
         boolean debug = false;
              Properties props = System.getProperties();
              props.put("mail.transport.protocol", "smtp");
              props.put("mail.smtp.host", SMTP_HOST_NAME);
              props.put("mail.smtp.port", "465");
              props.put("mail.smtp.starttls.enable", "true");
              props.put("mail.smtp.auth", "true");
              Authenticator auth = new SMTPAuthenticator();               
              Session session = Session.getDefaultInstance(props, auth);
              session.setDebug(debug);
              Message msg = new MimeMessage(session);
              InternetAddress addressFrom = new InternetAddress(from);
              msg.setFrom(addressFrom);
              InternetAddress[] addressTo = new InternetAddress[recipients.length];
         for (int i = 0; i < recipients.length; i++)
         addressTo[i] = new InternetAddress(recipients);
         msg.setRecipients(Message.RecipientType.TO, addressTo);
         msg.setSubject(subject);
         msg.setContent(message, "text/plain");
         Transport tr = session.getTransport("smtp");
         tr.connect(SMTP_HOST_NAME, SMTP_AUTH_USER, SMTP_AUTH_PWD);
         msg.saveChanges(); // don't forget this
         //tr.sendMessage(msg, msg.getAllRecipients());
         tr.close();
         tr.send(msg);
         public class SMTPAuthenticator extends Authenticator
         public PasswordAuthentication getPasswordAuthentication()
         String username = SMTP_AUTH_USER;
         String password = SMTP_AUTH_PWD;
         return new PasswordAuthentication(username, password);
    the error i am receiving is:
    java.lang.NoClassDefFoundError: javax/mail/Authenticator
         java.lang.Class.getDeclaredConstructors0(Native Method)
         java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
         java.lang.Class.getConstructor0(Unknown Source)
         java.lang.Class.newInstance0(Unknown Source)
         java.lang.Class.newInstance(Unknown Source)
         org.apache.struts.util.RequestUtils.applicationInstance(RequestUtils.java:143)
         org.apache.struts.action.RequestProcessor.processActionCreate(RequestProcessor.java:292)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:230)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
         org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    If anyone has any ideas it will be much appreciated
    Thanks in Advance
    Andy

  • What's simpler than mail merge?

    I have a Pages '09 document which will be used again and again by multiple people. Rather than make them perform a find and replace for each string like, "<%FirstName%>, <%LastName%>, <%Email%>" I wish I could attach a form to the file so that when someone openned it they would have to populate a few text fields one time and upon submition the find and replace would happen for all the various placeholder texts.
    The mail merge feature would be great if I needed a form letter but I don't. The benefit of mail merge would be creating several copies of a pages document populated by the data from rows a numbers file. I don't want to have to teach people how to change the data in a numbers file and make sure that they have it in the proper location on their machine.
    Does anyone know of a simple way to do this? I've looked at several applescript options but the find and replace scripts seem to only apply to body text. My document has body text, text boxes, tables and other types of text that I need replaced.
    Any answers would be greatly appreciated. Even if they are complicated. I'm comfortable trying to figure out Applescript or Automator if those are the only option but I definitely need a push in the right direction.
    Thanks.
    Pete

    Here is the edited script.
    --[SCRIPT open_a_Pages_custom_template_and_fill_fields]
    Enregistrer le script en tant que Script ou Application : open_a_Pages_custom_template_and_fill_fields.xxx
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:
    Aller au menu Scripts, choisir “open_a_Pages_custom_template_and_fill_fields”
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script or an Application : open_a_Pages_custom_template_and_fill_fields.xxx
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:
    Go to the Scripts Menu, choose “open_a_Pages_custom_template_and_fill_fields”
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/04/29 -- modified at 23:00:06 according to OP's request
    --=====
    true = open a predefined custom template
    false = open the custom template selected thru Choose From List
    property use_predefined_template : true
    Edit this property to fit your needs. You may change the strings or their number.
    The unique requirement is to keep the first two and the last two characters.
    property field_names : {"<%Error Title%>", "<%Error Type%>", "<%Unit ID%>"} --
    --=====
    on run
              my activateGUIscripting()
      run script do_your_duty
      --my do_your_duty()
    end run
    --=====
    script do_your_duty
      --on do_your_duty()
              local templates_loc, myTemplates_loc, chemin_des_modeles, le_modele, mon_modele
              local nb_chiffres, entire_contents, indx, chemin_de_mes_modeles, noms_de_mes_modeles, le_conteneur, i, un_element, le_titre, mon_choix
              set field_values to {}
              repeat with i from 1 to count of field_names
                        set field_name to item i of field_names
                        set le_prompt to "Enter the string to fill the field " & field_name
                        set maybe to text returned of (display dialog le_prompt default answer (text 3 thru -3 of field_name))
                        copy maybe to end of field_values
              end repeat
    Grab the localized names of the templates folders *)
              tell application "Pages"
                        my close_palettes()
                        set templates_loc to localized string "Templates"
                        set myTemplates_loc to localized string "My Templates"
              end tell -- to application a
    Define the path to the folder storing custom templates *)
              set chemin_des_modeles to "" & (path to library folder from user domain) & "Application Support:iWork:Pages:" & templates_loc & ":" & myTemplates_loc & ":"
              if use_predefined_template then
    Here, use a predefined custom template
                        set le_modele to "merge_in_it.template" --<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
                        set mon_modele to chemin_des_modeles & le_modele
              else
    Here, use a Choose from list dialog to define the template to use
                        set nb_chiffres to 3 (* 
    2 = allow 99 templates
    3 = allow 999 templates *)
    Grab the list of every items stored in the folder *)
                        tell application "Finder"
                                  set entire_contents to entire contents of folder chemin_des_modeles
                        end tell
    Build two lists. One contain the path to every custom templates.
    The other contain the names of these templates and the names of subfolders *)
                        set indx to 1
                        set chemin_de_mes_modeles to {}
                        set noms_de_mes_modeles to {}
                        set le_conteneur to ""
                        tell application "System Events"
                                  repeat with i from 1 to count of entire_contents
                                            set un_element to item i of entire_contents as text
                                            try
                                                      if type identifier of disk item un_element is in {"com.apple.iwork.Pages.template", "com.apple.iwork.Pages.sfftemplate"} then
                                                                if name of container of disk item un_element is not le_conteneur then
                                                                          set le_conteneur to name of container of disk item un_element
                                                                          copy (text 1 thru nb_chiffres of "---") & space & le_conteneur to end of noms_de_mes_modeles
                                                                end if
                                                                copy un_element to end of chemin_de_mes_modeles
                                                                copy text -nb_chiffres thru -1 of ("00" & indx) & space & name of disk item un_element to end of noms_de_mes_modeles
                                                                set indx to indx + 1
                                                      end if
                                            end try
                                  end repeat
                        end tell
                        if my parleAnglais() then
                                  set le_titre to "Pages’s custom templates"
                        else
                                  set le_titre to "Modèles personnalisés de Pages"
                        end if
    Choose the template to use.
    If you select a subfolder name, the script beep and ask one more time *)
                        repeat
                                  set mon_choix to choose from list noms_de_mes_modeles with title le_titre
                                  if mon_choix is false then error number -128
                                  try
                                            set mon_choix to text 1 thru nb_chiffres of (item 1 of mon_choix) as integer
                                            exit repeat
                                  on error
                                            beep 1
                                  end try
                        end repeat
                        set mon_modele to (item mon_choix of chemin_de_mes_modeles)
              end if
    Create a new document from the selected template *)
              tell application "Pages"
      open file mon_modele
                        tell document 1
                        end tell
                        repeat with i from 1 to count of field_names
                                  my Rechercher_Remplacer(item i of field_names, item i of field_values)
                        end repeat
              end tell -- Pages
      --end do_your_duty
    end script
    --=====
    on parleAnglais()
              local z
              try
                        tell application "Pages" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    on activateGUIscripting()
      (* to be sure than GUI scripting will be active *)
              tell application "System Events"
                        if not (UI elements enabled) then set (UI elements enabled) to true
              end tell
    end activateGUIscripting
    --=====
    on Rechercher_Remplacer(avant, |après|)
              local nom_du_dialog
              tell application "Pages" to activate
              tell application "System Events" to tell application process "Pages"
      keystroke "f" using {command down}
                        set nom_du_dialog to title of window 1
                        tell window nom_du_dialog to tell (first UI element whose role is "AXTabGroup")
                                  set value of first text area of first scroll area to avant
                                  set value of first text area of last scroll area to |après|
                                  if (count of checkbox) = 0 then
    Simple dialog *)
                                            set {X_bouton, Y_bouton} to position of last button
                                  else
    Advanced dialog *)
                                            set {X_bouton, Y_bouton} to position of button -3
                                  end if
                        end tell -- window nom_du_dialog…
                        click at {X_bouton + 5, Y_bouton + 5}
      keystroke "w" using {command down} -- Close the dialog
              end tell -- System Events…
              return
    end Rechercher_Remplacer
    --=====
    on close_palettes()
              local w, buttonX, buttonY, buttonW, buttonH
              tell application "Pages" to activate
              tell application "System Events" to tell application process "Pages"
                        set frontmost to true
                        repeat with w from (count of windows) to 1 by -1
                                  tell window w
                                            if (subrole is not "AXStandardWindow") then
                                                      tell first button to set {{buttonX, buttonY}, {buttonW, buttonH}} to {position, size}
                                                      click button 1 at {buttonX + (buttonW div 2), buttonY + (buttonH div 2)}
                                            end if
                                  end tell
                        end repeat
              end tell
    end close_palettes
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) vendredi 29 avril 2011 23:01:47
    Please :
    Search for questions similar to your own before submitting them to the community

  • Simple CDO Mail script??

    Hi,
    I need to automatically send an e-mail as a asp-page loads.
    No forms or interactivity, just a e-mail with a simple message.
    Does anybody has such a script? I am using asp and
    VisualBasic.
    Thanks!!

    Presuming CDONTS, it doesn't get much easier than the method
    outlined here:
    http://www.aspfaqs.com/aspfaqs/ShowFAQ.asp?FAQID=25
    Simply plop it at the top of the page and away it goes :-)
    Best regards,
    Chris

  • Psexec is kicking my butt

    The set up is this: the police department, due to them running around all over the place, have mobile laptops are not joined to the domain. They have a cellular modem in vehicle, and move to wifi when at the station. I have an executable(EXE1) in a shared folder(VirtualShare) with a username(VirtualGuest) that has read/execute permissions. EXE1 will check for the wifi connection every hour. If it is connected, it will run a batch file(Batch1). This way, I can update all of these devices as they get in without getting my hands on each device. The server with VirtualShare runs a program(EXE2) that will check on the list of laptops to see if it has a connection, and push EXE1 to each mobile device startup folder, then run it.The problem: I cannot get EXE1 copied over using psexec. Below is the pertinent part of EXE2. can anyone tell me...
    This topic first appeared in the Spiceworks Community

    Well, you're right about it being simple :-P
    I just downloaded and tested it out. In my case, I changed the email.conf file to /Library/WebServer/email.conf. It's owned by me with group admin permissions rw-r--r--. In it, I have:<pre>[email protected]
    /</pre>I used my actual email address though. The second line just tells it to return to the site's home page when it's done.
    The email.cgi file is in /Library/WebServer/CGI-Executables/email.cgi with owner me group admin, permissions rwxrwxrwx.
    Then I have an email.html file in /Library/WebServer/Documents, following the template on their web page. The only thing I changed from the template on their web page is the hidden form field "recipient" -- changed it from "changeme" to "[email protected]" (again, substituted with me real email address).
    It worked on the first shot. Do you have a target redirect line after the email address in your email.conf file? Did you remember to change the form field in your HTML form to match a legal email address?

  • Safari & Mail kicks me out of program when trying to print from mail or web

    When I'm in mail or safari and I try to print something the program kicks me out and says "unexpectedly quits." I need help to get this fixed.

    As a first step, I suggest performing the system troubleshooting procedures per this link and when doing so, follow all steps/instructions in the order provided.
    http://www.thexlab.com/faqs/repairprocess.html

  • Why do I get html tags with my Flash forms CGI-mailed input text?

    I'm using a Flash form to send input text to a cgi page
    (using load variable). The following text is on the CGI page.
    To: [email protected]
    From: [email]
    Errors-To: [email protected]
    Subject: [subject]
    Type of Project: [subject]
    Deadline: [details]
    Name: [realname]
    e-mail: [email]
    Phone: [phone]
    e-mails me results like this...
    Type of Project: <TEXTFORMAT LEADING="2"><P
    ALIGN="LEFT"><FONT
    FACE="_sans" SIZE="12" COLOR="#000000"
    LETTERSPACING="0" KERNING="0">by
    george</FONT></P></TEXTFORMAT>
    Deadline: <TEXTFORMAT LEADING="2"><P
    ALIGN="LEFT"><FONT
    FACE="_sans" SIZE="12" COLOR="#000000"
    LETTERSPACING="0"
    KERNING="0"></FONT></P></TEXTFORMAT><TEXTFORMAT
    LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans"
    SIZE="12" COLOR="#000000" LETTERSPACING="0"
    KERNING="0">it!!!</FONT></P></TEXTFORMAT>
    Name:
    e-mail: <TEXTFORMAT LEADING="2"><P
    ALIGN="LEFT"><FONT
    FACE="_sans" SIZE="12" COLOR="#000000"
    LETTERSPACING="0"
    KERNING="0">[email protected]</FONT></P></TEXTFORMAT>
    Phone: <TEXTFORMAT LEADING="2"><P
    ALIGN="LEFT"><FONT
    FACE="_sans" SIZE="12" COLOR="#000000"
    LETTERSPACING="0" KERNING="0">I&apos;ve
    got</FONT></P></TEXTFORMAT>
    anyone know how I can get it to drop all the extraneous html
    crap? - I just want the input text items.
    Also I can't figure out how to do a flash pulldown list as a
    form element... all tutorials I find on the sbject are for Flash 5
    and say to use Smartclips from the common librarirs tab - but there
    are no "smartclips" in my Flash CS3. I see other things in
    components (menu, list) - but cannot figure out how to add my items
    to the list.

    is there some way I could use an "expression" to subtract the
    unwanted text strings from the info being passed by the variables?
    If so, does anyone have an example of the context I would used to
    subtract 2 strings from that info...
    this string of html tags appears before the passed input text
    TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT
    FACE="_sans" SIZE="12" COLOR="#000000"
    LETTERSPACING="0" KERNING="0">
    and this appears affter it...
    </FONT></P></TEXTFORMAT>
    it's always the same.

  • Blackberry e-mail address filtering simple e-mails

    I use my blackberry e-mail address for paging.  Since my 8350i does not have SMS and MMS is not always very reliable, I feel more comfortable using the blackberry.net address for paging.  I can also have a different alert for this address and know when something has gone wrong.
    I use different sources for the paging and I can get almost all of my pages without a problem, but when receiving a page from a UNIX server through mail, I get nothing.  I assume that since the message is too simple or has some sort of signature that is automatically getting filtered.
    Anyone know what this is and maybe I can find a way of generating the e-mail in such a way that it doesn't get filtered.
    Here are the headers when sent to another account (removed sensitive information):
    Received:  from mailserver (0.0.0.0) by mailserver (0.0.0.0) with Microsoft SMTP Server id 8.2.213.0; Tue, 30 Mar 2010 09:19:43 -0700
    Received:  from server ([0.0.0.0]) by smtpserver with Microsoft SMTPSVC(6.0.3790.3959); Tue, 30 Mar 2010 09:19:42 -0700
    MIME-Version: 1.0
    Content-Type: text/html;
    charset="us-ascii"
    Content-Transfer-Encoding: quoted-printable
    Received:  (from user@localhost) by server (8.8.8+Sun/8.8.8) id QAA17472 for [email protected]; Tue, 30 Mar 2010 16:19:41 GMT
    x-ms-exchange-organization-authas: Anonymous
    X-MimeOLE: Produced By Microsoft Exchange V8.2
    x-ms-exchange-organization-authsource: mailserver.com
    x-originalarrivaltime: 30 Mar 2010 16:19:43.0265 (UTC) FILETIME=[CE566910:01CAD024]
    Content-class: urn:content-classes:message
    Subject: NOC Down!
    Date: Tue, 30 Mar 2010 09:19:41 -0700
    Message-ID: <201003301619.QAA17472@server>
    X-MS-Has-Attach: 
    X-MS-TNEF-Correlator: 
    Thread-Topic: NOC Down!
    Thread-Index: AcrQJM6gHkDnMu0zQHKo5bxD7ZHmtg==
    From: "User Name" <[email protected]>
    I'm thinking that the from field being user@localhost is what's causing the problem.

    It get's worse for me i didn't post this part but i also use an Apple ipad and since the e-mail addresses are in "other" they never sync over to my iPad. RIM if your listening I'm this close to switching to an iPhone. RIM Please fix the field mappings with the Mac Black Berry Desktop or allow us to setup custom mapping. I've been using Black Berry's for almost 10 years and it may be time I move on to something else.

  • Tutorial with simple CGI remote control of vis

    Just got the internet toolkit and would like to control vi's with
    browser.
    Where can I find simple examples to get inspiration....
    Thanks
    Regards
    Gerard D'Ans ([email protected])
    Laborelec Rodestraat,125 B-1630 Linkebeek
    tel 32 2 382 0568
    fax 32 2 282 0241
    ULB SMA ([email protected])
    Blvd F D Roosevelt CP165 B-1050 Brussels
    Tel 32 2 650 2515
    http://www.ulb.ac.be/polytech/laborulb/index.htm

    Gerard D'Ans;
    You may want to check the book "Internet Applications in LabVIEW" by Jeffrey Travis.
    Regards;
    Enrique
    www.vartortech.com

  • Why does it take a while bfeore my Safari and Mails kick in

    Once in a while my internet browser and Mail would take a while to start after i open it. My internet signal is full on a and very fast. I mean i don't have this problem on my MB or MBP.

    Try starting with this article from MacFixit (Cnet now)
    http://reviews.cnet.com/8301-13727_7-20016549-263.html
    Also likely to find tips from users on MacIntouch.
    http://www.macintouch.com/readerreports/index.html

  • Setting Up Mail kicks out SMTP when used in multiple accounts

    Last night I attempted to set up Mail.app (not for the first time!) in Tiger. It only seems to allow 1 user account with the same SMTP address. My girlffiend and myself have separate user accts but the same email provider I set hers up no problem it seemed, I then went to set up mine in my user acct but it kept saying SMTP server not responding so I deleted hers and set up mine - Done, I thought! NO! When I tried to recreate hersit gave me the same msg about the SMTP, I soon found I was going in circles. I set up various other email accounts online to use the SMTP but the same message appeare. I set up in entourage no problems at all BUT I can't set up entourage in her acct! I'm feeling a little frustrated to say the least - any help with either app would be grately appreciated...

    Ryan,
    Glad you could so ably solve this issue. In broadband, your mail server identity is typically established via the Username of each account, and that Username is typically derived from the email address itself. Dial-up can be different, and I am aware that some broadband outside the US can utilize different codes.
    The parallel to the code you had to lead with, is the IP address for each broadband connection, and this is location specific, unlike being able to dial in from anywhere. I have not used dial-up in a long time, and never with a Mac.
    All the best.
    Ernie

  • Really simple Mac Mail question about the Delete button

    When at a message, the Edit menu shows Command+Delete as being the proper keystroke for deleting a message.
    Just pressing Delete also removes it from the Inbox.
    What is different between that and Command+Delete?
    Thanks,
    doug

    Hi,
    I don't have a very good answer to you other than the fact that the Macbook does not have a proper DELETE-button.  You delete by pressing cmd/backspace.
    If you want to delete something through Finder you have to press cmd/backspace.  In orher programs, like Mail, you can delete by pressing only backspace.  In iPhoto you can delete pictures by presing backspace and conform with return.
    The reason for these different solutins are not known to me...  
    Nils

  • Simple e-mail address to contact support?

    Where to find one?

    There is no such thing. you have to go through the proper channels, that is use the web form, web chat or phone support.
    Mylenium

Maybe you are looking for

  • Set maximum number of BPM nodes

    Hy all, can someone tell me how can i set the maximum number of bpm node in XI.(Transaktion for example) Thank's a lot. Mat

  • BPS CCA Retractor setup

    Hi All, I am new to BPS and and am trying to set up the functionality for Retraction of data from SEM to R/3. But when I go to the transaction (as mentioned in SAP Help) Business Analytics -> Financial Analytics -> Cost Center Planning -> Cost Center

  • My camera don't work since I download. Update

    Since I  download the new version ios5.0.1 my camera don't work on my I pod touch 4generation

  • Adobe Acrobat XI version 11.0.06.70

    Hi, I am trying to edit an imported PDF form but it says I have to use LiveCycle Designer. Claire

  • Image not going behind other controls

    I am having difficulties with something that seems like it should be very simple.  I am making a world clocks application.  I have created all of my clock controls, and now I want to put an image behind them (very light, stretches the whole length of