CFMAIL help

I created a form for internal maintenance jobs. We need to have the forms emailed to individuals and department heads. I have no problem with the individual emails but the department head emails are in a table in the database. Who gets the email will depend on what is filled out under Department in the form.
My question is, what do I put in the To field in the CFMAIL?
I created a query that looks like this--
<CFQUERY Name="email" Datasource="maintenance"  >
SELECT
dept.email
FROM dept
WHERE dept.department = #form.department#
</CFQUERY>
For the email I have this--
<CFMAIL To="<CFOUTPUT>#email.email#</CFOUTPUT>"
From="[email protected]"
Subject="Testing the department email"
Server="192.168.1.2"
Port="25"
Timeout="60" >
Testing the department email to see if it's correct.
</CFMAIL>
I'm getting an error when I try to send the form:
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access
Driver] Too few parameters. Expected 1.
Any help on how to get this to work? TIA

I actually figured it out!
I had to put quotes around the WHERE clause like this:
WHERE dept.department = '#form.department#'
And for the email I had to remove the <CFOUTPUT> from the To field.
Thanks everyone for the responses!!

Similar Messages

  • Cfmail not working. Please help!

    I am trying to get this to send an email each time a file is
    uploaded. All the fields in the form are updating the database
    correctly but the email is never sent and no error message is
    generated. Any ideas....please help!!!
    <cfif IsDefined("FORM.ID")>
    <cfupdate datasource="xxxxxxx" tablename="FTPCatalog">
    <cfelse>
    <cfinsert datasource="xxxxxxx" tablename="FTPCatalog">
    <cfmail to = "#SendTo#"
    from = "#EmailAddress#"
    subject = "FTP file upload notification!"
    server = "mail.server.net" >
    A file has been uploaded to the server.
    </cfmail>
    </cfif>

    you do realise that your code as it is in your original post
    will only
    send email when a NEW RECORD is INSERTED into the db? no
    email will be
    sent on UPDATE of db because how your cfif/cfelse is
    constructed.
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Help with CFMAIL QUERY?

    Greetings
    On my final leg of getting a notification system up and
    running, I have run into lookup table/junction table
    discombobulation.
    I want a notification message to go out to only those who
    match a code.
    The codes reside in the lookup_code table, the email
    addresses reside in the lookup_contact table, the main vendors
    table is related to both the contacts and junction_vendor_code
    tables via FK's.
    The body of the email must pull information from the main bid
    table for the descriptions:
    <p>The following Bid Package has been posted:</p>
    <p>#ReferenceNumber#, #Title#, #Description#</p>
    etc.
    <cfquery name="list_sendto"
    datasource="#Request.BaseDSN#">
    SELECT vendors.vendor_ID, lookup_contact.vendor_ID,
    contact_email, ReferenceNumber,Title,Description
    FROM vendors, lookup_contact, junction_vendor_code, bid
    WHERE ???
    </cfquery>
    <cfmail query="list_sendto"
    to="#list_sendto.contact_email#"
    etc.
    The first mail was supposed to go to one vendor contact, but
    went out the the whole list of vendor contacts twice.
    Thanks for any help and happy Thanksgiving...
    newportri

    The first mail was supposed to go to one vendor contact, but
    went out the the whole list of vendor contacts twice.
    It means the where-clause is satisfied by more than one row.
    Use <cfdump var="#list_sendto#"> to verify this.

  • Help with CFMAIL error message ...

    Up until yesterday my CFMAIL templates were working fine. Now
    I get the following error which I cannot track down anywhere:
    450 4.3.1 insufficent free queue space available
    CFMAIL is now sending the mails to
    /opt/coldfusionmx7/Mail/Undelivr as you would expect. The Spool
    directory is empty so there is not a big backlog there.
    I cannot find out what this error message means and why it
    suddenly arose.
    Any guidance would be very much appreciated.
    best wishes
    bill

    I still don't know what the issue is but restarting the
    coldfusion service (in linux) fixed it.

  • Cfmail  - works locally but not when uploaded

    Hi,
    I'm using cfmail with form variables for the email addreses.
    It's so users can send email to political candidates. Here's the
    code:
    <cfoutput>#Form.semails#</cfoutput>,<cfoutput>#Form.hemails#</cfoutput></p>
    <cfmail to="#Form.semails#,#Form.hemails#"
    replyto="#Form.useremail#" failto="[email protected]"
    from="#Form.useremail#" subject="Keep Maine Toxin-Free!"
    server="mail.nosuch.com" port="26" timeout="40"
    username="[email protected]" password="nosuch">
    #Form.usermessage#
    </cfmail>
    The form submit page collects those variables and passes them
    as form variables - GET. The "to" field in cfmail is populated by
    hidden fields that contain session variables... they're forwarded
    on as those .semails and .hemails form variables. Actual values
    have been replaced with "none" or "nosuch" for security, but you
    can see the structure anyway.
    This works when run locally, sends the emails as it should.
    When uploaded exactly as is to godaddy's server, it doesn't send
    emails. Doesn't throw any errors, the form results page displays as
    it should... but the emails just never get sent.
    I'd really appreciate any ideas...
    Joe

    Adam Cameron wrote:
    > I don't know how these shared hosting outfits work, and
    what access you
    > have to what, but here's some questions:
    >
    > - have you inspected the mail logs to see if they cast
    any light on the
    > scene
    > - have you configured CF to tell it where the SMTP
    server is?
    > - do you need to authenticate to it, and that sort of
    thing?
    > - are the email messages failing @ the CF end (in which
    case they'll be in
    > the mail/undeliverable dir (not entirely sure that's the
    name of it, but
    > have a shufti around in the cfusion dir...), or are they
    getting to the
    > SMTP server and failing there (check the SMTP server's
    logs).
    >
    Unfortunately all that can't be done by us users of these
    shared hosting
    outfits. You'll need to contact GoDaddy support and ask them
    to take
    these steps. I'm sorry about your probably experience with
    this.
    While I use GoDaddy for my personal hosting where I care more
    about not
    spending a great deal of money over high performance. I do
    not wish my
    support experiences on anybody. If you know ColdFusion well
    and can
    tell support what needs to be done, they should be able to do
    it. Or,
    more likely, you would be able to figure out the self help
    tools to do
    it yourself. But, unless this has changed since my last
    experience,
    their support staff is not ColdFusion literate and are unable
    to guide
    other, inexperienced ColdFusion users.
    Saying all that. Email works just fine on my GoDaddy website
    and I do
    not believe I had to do anything special to use it.

  • Using a radio button in cfmail / form.

    Hello;
    This is a silly question, but I can't remember how to program in radio buttons for a cfmailer. I have 3 radio buttons, basically, I just need to know what the users choice was when they checked it off. The following is my radio buttons and what I have for code right now. But I'm not grabbing the proper variable, I also tried dumping a few diffrerent variables to see if I could get it.
    <input name="type" type="radio" onClick="setVisibility('sub3', 'inline');setVisibility('sub4','none');setVisibility('sub5','none');" value='male' checked="checked"/>Magnets
    <input type="radio" name="type" value='female' onClick="setVisibility('sub3', 'none');setVisibility('sub4','inline');setVisibility('sub5', 'none');"/>Paper Steel
    <input type="radio" name="type" value='child' onClick="setVisibility('sub3', 'none');setVisibility('sub4','none');setVisibility('sub5', 'inline');"/> both
    on my response page, I tried this:
    <cfif form.type EQ "male">
    if this was their choice, then this set of rules would apply
    </cfif>
    and so on for the other two choices. This isn't catching my buttons, what am I doing wrong? do I need to make a paramiter for the radio buttons before I can allow it to function? like this?
    <cfparam name="FORM.type" default="">
    then I can use my if statement? (that isn't working right now either)
    here is what I'm trying to dump:
    <cfdump var="#form.type#">
    <cfabort>
    </cfdump>
    How do I do this? Can anyone help me?

    I suspect that you have a problem in some portion of your code that you have not posted. To help debugging I suggest you create a simple test using two pages: input.cfm and action.cfm.  Get the most simple case working then add the javascript, css, and CF code to make your application work.
    <!--- contents of input.cfm --->
    <html>
    <head>
         <title>Input</title>
    </head>
    <body>
         <form action="action.cfm" method="POST">
              Choose type: <br />
              <input name="type" type="radio" value="male" />     Male<br />
              <input name="type" type="radio" value="female" /> Female<br />
              <input type="submit" />
         </form>
    </body>
    </html>
    <!--- content of action.cfm --->
    <html>
    <head>
         <title>Action</title>
    </head>
    <body>
         <cfif form.type eq "male">
              Type is male.
         <cfelseif form.type eq "female">
              Type is female.
         </cfif>
         Here is a cfdump of the form variables:<br />
         <cfdump var="#form#" />
    </body>
    </html>
    Message was edited by: JR "Bob" Dobbs
    Added sample for action.cfm

  • Cfmail spool sending one message at a time

    I have mx7 standard installed on win 2003 server
    a cfmail page sends files to the spool corectly.
    The spool is only sending out one message every 60 seconds or
    so. Changing the spool interval has no effect.
    these need to go out a lot faster than this.
    the mail.log is showing this but i'm not sure it's the
    problem.
    Aug 4, 2006 11:19 AM Error 0
    Exception reading response; nested exception is:
    java.net.SocketTimeoutException: Read timed out
    Aug 4, 2006 11:18 AM Error 0
    Exception reading response; nested exception is:
    java.net.SocketTimeoutException: Read timed out
    Aug 4, 2006 11:17 AM Error 0
    Exception reading response; nested exception is:
    java.net.SocketTimeoutException: Read timed out
    Aug 4, 2006 11:16 AM Error 0
    Exception reading response; nested exception is:
    java.net.SocketTimeoutException: Read timed out
    Aug 4, 2006 11:15 AM Error 0
    Exception reading response; nested exception is:
    java.net.SocketTimeoutException: Read timed out
    thanks for any help in advance.

    I would suggest playing with the other mail specific
    settings, such as #of mail delivery threads, but my guess is you've
    already messed with these.
    Perhaps it has nothing to do with CF, but rather a bottleneck
    with the process that is creating the emails. How many emails are
    you trying to send?
    Is it a query driven mail tag?
    Another aspect to check would be the version of JRUN being
    used by CF. You might find an update to a newer version of JRUN
    would solve the problem.
    Given the errors you've listed (SocketTimeout), they seem to
    be JAVA specific.
    In any case, good luck!
    bh

  • Help with e-mailing a form

    Hi, i am new to the forum and I just put up a new wesite for
    my company since the other one was outdated. I look around the
    forum to see what previous post could help me but no such luck. I
    am using Dreamweaver 8 and I need help with emailing a form.
    Here is the code of the form page and the script
    Can someone help me?

    The form needs to submit to a page that will have the email
    processing code
    on it. What you put there will depend on how you are sending
    the mail ..
    i.e. what server components are available to you on the
    server such as JMail
    or CFMail or PHPMail or ASPEMail .. etc. You already know
    what server model
    you are using and you should be able to find out what you
    have to work with
    on your host's web site.
    If this is not already an active web site with a server
    model, you can use
    something like Form Mail, a CGI script that will do that job
    for you ..
    available at
    http://www.cgi-resources.com
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "nitrodragon3000" <[email protected]> wrote
    in message
    news:e8lsmd$151$[email protected]..
    > Hi, i am new to the forum and I just put up a new wesite
    for my company
    > since
    > the other one was outdated. I look around the forum to
    see what previous
    > post
    > could help me but no such luck. I am using Dreamweaver 8
    and I need help
    > with
    > emailing a form.
    >
    > The website address is
    http://www.1helical.com and the
    form is under quote
    > request.
    >
    > Can someone help me?
    >

  • Help!  Form is not submitting or doing anything! Any ideas?

    I inherited this web application and have zero CF experience and any help is greatly appreciated!  So, the "Forgot Password" form isn't working at all.  The email is sent properly from the referring page and when you click the link it brings up the page right, however, when you fill out the form with "email address" and "username" and hit submit, it does nothing.  I'm not even getting an error.
    Is there something I'm missing in the code that is wrong?  I'll post the entire code and what the URL looks like when arriving at this page.  It is still in my dev environment.
    Thanks in advance for ANY help!  I'm really lost and confused.
    http://<server>/~mld/ForgotPassword/index.cfm?plw=359&qke=995708
    <!---
    Project: MLD Registry
    Page Name: index.cfm
    Page Purpose: Home page for Forgot Password pages
    Programmer: Eric Savage
    --->
    <html>
    <head>
              <title>Forgot Password</title>
              <link rel="stylesheet" type="text/css" media="screen" href="../StyleSheet_Display.css" />
              <link rel="stylesheet" type="text/css" media="print" href="../StyleSheet_Print.css" />
    </head>
    <body>
    <cfsilent>
    <cfparam name="plw" default=""><!--- Registry_ID --->
    <cfparam name="qke" default=""><!--- Acct_num_temp --->
    <cfparam name="Email" default="">
    <cfparam name="UserName" default=""><!--- User Name --->
    <cfparam name="CheckEntries" default=""><!--- Check submissions for errors --->
    <cfparam name="Error" default="0">
    <cfparam name="ErrorMessage_Email" default="">
    <cfparam name="ErrorMessage_UserName" default="">
    <cfparam name="ksr" default=""><!--- Forgot password: email/new password sent --->
    <cfparam name="uca" default="">
    <cfif Len(CheckEntries) and Len(UserName) and Len(Email) and Len(plw) and Len(qke)>
              <cftry>
        <cfquery name="CheckIfValidUser" datasource="#Datasource#">
            SELECT                    rid,rid_name,r_email,registry_id,acct_num_temp,r_website_type
            FROM                    registry
            WHERE                    rid_name= <cfqueryparam value="#UserName#" cfsqltype="CF_SQL_VARCHAR"> and r_email= <cfqueryparam value="#Email#" cfsqltype="CF_SQL_VARCHAR"> and registry_id= #plw# and acct_num_temp= #qke#
        </cfquery>
        <cfcatch type="Any">
                        <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                  <cflocation url="ErrorMessage.cfm" addtoken="No">
            <cfabort>
        </cfcatch>
              </cftry>
              <cfif not CheckIfValidUser.RecordCount>
                        <cftry>
                        <cfquery name="UserLog" datasource="#Datasource#">
                                  INSERT INTO userlog(http_user_agent,todaysdate,ip_address,user_name,comments)
                                  VALUES ('#CGI.http_user_agent#',#CreateODBCDateTime(Now())#,'#remote_addr#','#Email#','ForgotPas sword/index.cfm: failed attempt')
                        </cfquery>
                        <cfcatch type="Any">
                                  <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                        </cfcatch>
                        </cftry>
              </cfif>
              <cfif CheckIfValidUser.RecordCount>
                        <cfinclude template="../includefiles/inc_Password_CreateRandom.cfm"><!--- Creates random password in variable called RandomlyCreated_Password --->
            <cfset Password_To_Check= RandomlyCreated_Password><!--- Pass value of new password to include file --->
                        <cfinclude template="../includefiles/inc_Password_CheckFormat.cfm"><!--- Check password complies with  --->
                        <cfif Len(ErrorMessage_Password_To_Check)>
                      <cfset ErrorMessage= "(" & #CheckIfValidUser.rid# & ") [auto password gen] " &  ErrorMessage_Password_To_Check>
                <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                <cflocation url="ErrorMessage.cfm" addtoken="No">
                <cfabort>
                        </cfif>
                        <cfif not Len(ErrorMessage_Password_To_Check)>
                <cftry>
                <cfquery name="UpdatePassword" datasource="#Datasource#">
                    UPDATE                    registry
                    SET                              rid_pass= Password('#RandomlyCreated_Password#')
                    WHERE                    rid_name= <cfqueryparam value="#UserName#" cfsqltype="CF_SQL_VARCHAR"> and r_email= <cfqueryparam value="#Email#" cfsqltype="CF_SQL_VARCHAR"> and registry_id= #plw# and acct_num_temp= #qke#
                </cfquery>
                <cfcatch type="Any">
                    <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                    <cflocation url="ErrorMessage.cfm" addtoken="No">
                    <cfabort>
                </cfcatch>
                </cftry>
                <cftry>
                <cfquery name="UserLog" datasource="#Datasource#">
                    INSERT INTO userlog(http_user_agent,todaysdate,ip_address,user,comments)
                    VALUES ('#CGI.http_user_agent#',#CreateODBCDateTime(Now())#,'#remote_addr#','#CheckIfValidUser.r id#','ForgotPassword/index.cfm: new password added')
                </cfquery>
                <cfcatch type="Any">
                    <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                </cfcatch>
                </cftry>
                <cfparam name="Subject" default="(Secure) NDRD Clinical Questionnaire">
                <cfif CheckIfValidUser.r_website_type is "MLD"><cfset Subject= "(Secure) MLD Registry"></cfif>
                <cfif CheckIfValidUser.r_website_type is "NFRD"><cfset Subject= "(Secure) NFRD Registry for Rare Genetic Disorders"></cfif>
                <cftry>
                <cfmail
                    to="#Email#"
                    subject="#Subject#"
                    from="#CONTACT.EMAIL_NURSE#"
                    server="<SMTP SERVER>"
                    type="html">
                    <p>Here is the new password you requested: #RandomlyCreated_Password#.</p>
                </cfmail>
                <cfcatch type="Any">
                    <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                    <cflocation url="ErrorMessage.cfm" addtoken="No">
                    <cfabort>
                </cfcatch>
                </cftry>
                <cfparam name="WebsiteType" default="">
                <cfif CheckIfValidUser.r_website_type is "Clinic"><cfset WebsiteType= "01345"></cfif>
                <cfif CheckIfValidUser.r_website_type is "MLD"><cfset WebsiteType= "04385"></cfif>
                <cfif CheckIfValidUser.r_website_type is "NFRD"><cfset WebsiteType= "03475"></cfif>
                <cflocation url="index.cfm?ksr=30471&dfa=84836&uca=#WebsiteType#" addtoken="No">
            </cfif>
              </cfif>
    </cfif>
    </cfsilent>
    <cfinclude template="inc_PageTitle.cfm"><!--- Page title --->
    <div id="Container">
              <cfinclude template="inc_NavBar.cfm">
              <div id="Content">
                        <div id="minheight">
                                  <cfoutput>
                                  <cfif not Len(ksr)>
                                            <div style="padding: .5em 0 .75em 0; border-style: solid; border-width: 0 0 1px 0;">
                        Please enter your email address and user name.
                                            </div>
                                            <cfform action="index.cfm" method="POST">
                                                      <p>
                                                      <span class="ResponseLabel_10"><label for="Email">Email Address</label></span>
                                                      <cfinput type="Text" name="Email" id="Email" value="#Email#" message="Please enter an email address" required="Yes" size="30" maxlength="40">
                                                      </p>
                                                      <p>
                                                      <span class="ResponseLabel_10">User Name</span>
                                                      <cfinput type="Text" name="UserName" id="UserName" value="#UserName#" message="Please enter a User Name" required="Yes" size="12" maxlength="50">
                                                      </p>
                                                      <p><input type="submit" value="Submit"></p>
                                                      <input type="hidden" name="CheckEntries" value="Check">
                        <cfoutput>
                                                      <input type="hidden" name="plw" value="#plw#"><!--- Registry_ID --->
                                                       <input type="hidden" name="qke" value="#qke#"><!--- Acct_num_temp --->
                        </cfoutput>
                                            </cfform>
                                  </cfif>
                                  <cfif Len(ksr)>
                                            <cfif Trim(uca) is "01345"><cfset WebsiteType= "Clinic"></cfif>
                    <cfif Trim(uca) is "04385"><cfset WebsiteType= "MLD"></cfif>
                    <cfif Trim(uca) is "03475"><cfset WebsiteType= "NFRD"></cfif>
                                            <div style="padding: .5em 0 .75em 0;">An email has been sent with your new password.</div>
                    <cfif Len(Trim(WebsiteType))><a href="#HTMLPath#/#WebsiteType#/LogIn.cfm">Log in</a></cfif>
                                  </cfif>
                                  </cfoutput>
                        </div><!--- min-height --->
              </div><!--- Content --->
    </div><!--- Containter --->
    <cfinclude template="../includefiles/inc_PageFooter.cfm"><!--- Page footer (contains closing tag for Container) --->

    <cfform action="index.cfm" method="POST">
    This line is going to tell the web browser to submitt the page to the web server and have the web server run the "index.cfm" page.
    The web server then expects the "index.cfm" page to expect a post request and do something with the key-value pairs contained in the header of the request.
    With a rather generaic file name like "index.cfm" it is not unlikely that the index.cfm page simply ignores the form key-value pairs and does nothing with them.  But with no way to see the server side code of this index.cfm page I can not tell for sure.

  • Problem with vCalendar in CFMail tag

    I've created an Outlook meeting invitation using cfmail and vCalendar and it works under normal conditions. But I have an event that is a three-day class. I attempt to create three invitations within the same cfm file, using three diffeent cfmail tags and using different times, subjects, descriptions, and summaries in the vCalendar. But when the three invitations arrive in my Outlook mailbox, Outlook thinks they are all the same event and posts tentative appointment to the last of the three days, but not to day 1 or day 2. Anyone have any clues as to what I'm doing wrong?
    <cfmail to="#form.email#" from="#fromemail#" subject="Event to be named" type="multipart">
    <cfmailparam name="content-class" value="urn:content-classes:calendarmessage">
    <cfmailparam name="Content-Type" value="text">
    <cfmailparam name="method" value="REQUEST">
    <cfmailparam name="charset" value="utf-8">
    <cfmailparam name="Content-Transfer-Encoding" value="7bit">
    <cfmailpart type="text">
    This is your meeting invitation for the following Insurance Administration Training and Development Class:
    August Annuity University Day 3
    </cfmailpart>
    <cfmailpart type="text/calendar">
    BEGIN:VCALENDAR
    PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
    VERSION:2.0
    METHOD:PUBLISH
    BEGIN:VEVENT
    DTSTART:20090820T140000Z
    DTEND:20090820T170000Z
    LOCATION:C5 Main
    TRANSP:OPAQUE
    SEQUENCE:0
    UID:0
    DTSTAMP:#tmstmp#
    DESCRIPTION;ENCODING=QUOTED-PRINTABLE:Insurance Administration Annuity University-- August Day 3\n
    SUMMARY:Class
    PRIORITY:5
    X-MICROSOFT-CDO-IMPORTANCE:1
    CLASS:PUBLIC
    END:VEVENT
    END:VCALENDAR
    </cfmailpart>
    </cfmail>
    </cfif>
    <cfif form.session eq "AnnU-2">
      <cfmail to="#form.email#" from="#fromemail#" subject="November Day 2 Annuity University Insurance Administration Training and Development Class" type="multipart">
    <cfmailparam name="content-class" value="urn:content-classes:calendarmessage">
    <cfmailparam name="Content-Type" value="text">
    <cfmailparam name="method" value="REQUEST">
    <cfmailparam name="charset" value="utf-8">
    <cfmailparam name="Content-Transfer-Encoding" value="7bit">
    <cfmailpart type="text">
    This is your meeting invitation for the following Insurance Administration Training and Development Class:
    August Annuity University Day 2
    </cfmailpart>
    <cfmailpart type="text/calendar">
    BEGIN:VCALENDAR
    PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
    VERSION:2.0
    METHOD:PUBLISH
    BEGIN:VEVENT
    DTSTART:20091118T150000Z
    DTEND:20091118T180000Z
    LOCATION:C5 Main
    TRANSP:OPAQUE
    SEQUENCE:0
    UID:0
    DTSTAMP:#tmstmp#
    DESCRIPTION:Insurance Administration Annuity University--August Day 2\n
    SUMMARY:summary
    PRIORITY:5
    X-MICROSOFT-CDO-IMPORTANCE:1
    CLASS:PUBLIC
    END:VEVENT
    END:VCALENDAR
    </cfmailpart>
    </cfmail>
      <cfmail to="#form.email#" from="#fromemail#" subject="November Day 3 University Insurance Administration Training and Development Class" type="multipart">
    <cfmailparam name="content-class" value="urn:content-classes:calendarmessage">
    <cfmailparam name="Content-Type" value="text">
    <cfmailparam name="method" value="REQUEST">
    <cfmailparam name="charset" value="utf-8">
    <cfmailparam name="Content-Transfer-Encoding" value="7bit">
    <cfmailpart type="text">
    This is your meeting invitation for the following Insurance Administration Training and Development Class:
    August Annuity University Day 3
    </cfmailpart>
    <cfmailpart type="text/calendar">
    BEGIN:VCALENDAR
    PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
    VERSION:2.0
    METHOD:PUBLISH
    BEGIN:VEVENT
    DTSTART:20091119T150000Z
    DTEND:20091119T180000Z
    LOCATION:C5 Main
    TRANSP:OPAQUE
    SEQUENCE:0
    UID:0
    DTSTAMP:#tmstmp#
    DESCRIPTION:Insurance Administration Annuity University--August Day 3\n
    SUMMARY:summary
    PRIORITY:5
    X-MICROSOFT-CDO-IMPORTANCE:1
    CLASS:PUBLIC
    END:VEVENT
    END:VCALENDAR
    </cfmailpart>
    </cfmail>
    </cfif>

    Hi there,
    I think its because youre using the same UID for all your events. From what I understand, every event needs its own unique reference,
    hope that helps.

  • Trouble with CFMAIL

    I'm using CFMail on a Win2k server running IIS and having a
    wierd mail problem.
    I can send mail to certain email addresses, but not others.
    The ones that don't get mail
    are *definitely* valid emails, at places like gmail with no
    problems in the account.
    There's no clear logic to which emails do work and which
    don't, but the log shows this for
    the ones that don't send out
    "Error","scheduler-5","12/04/06","06:41:47",,"Invalid
    Addresses; nested exception is: class
    javax.mail.SendFailedException: 452 4.2.2 Mailbox full "
    "Error","scheduler-5","12/04/06","06:44:04",,"Invalid
    Addresses; nested exception is: class
    javax.mail.SendFailedException: 452 4.2.2 Mailbox full "
    What can I do to find more information out, are there are any
    articles/resources or anyone with war-scars that can help explain
    this one?
    Thanks much
    Paul Berry

    > Hi!
    >
    > I'm having trouble sending e-mail with cfmail to domains
    containing characters
    > like å ä ö. In mail.log I get the
    following message: "508 5.5.2 Illegal
    > character in address".
    >
    > Is this a bug or a setting somewhere in the
    Administrator?
    According to this:
    http://en.wikipedia.org/wiki/Domain_name_system#Internationalised_domain_names,
    it's legal to have those sort of characters in a domain name,
    but not a
    host name.
    But according to this:
    http://java.sun.com/products/javamail/javadocs/javax/mail/Address.html,
    it
    sticks to RFC 822 (
    http://www.ietf.org/rfc/rfc822.txt),
    which doesn't seem
    to differentiate between the host part and the domain part of
    an address,
    and only allows for ASCII 0-127 in the domain name.
    So the bottom line is those domain names - for the purposes
    of internet
    email addressing - aren't actually legal. So - strictly
    speaking - it's
    correct for CF to reject them.
    I would say you're screwed, unless you can find some
    alterative emailing
    system (not <cfmail>), and use that. But then again,
    the alternatives
    could quite possibly disallow those addresses too.
    Adam

  • Cfmail dash problems

    Does coldfusion 7 support having an email address with a dash
    in it. ie
    [email protected]
    I am getting this error in the log.
    Invalid Addresses; nested exception is: class
    javax.mail.SendFailedException: 501 5.5.4 Invalid Address
    This is proving to be a big problem as dealing with many
    users who have email addresses in this format.
    Is there any workaround - ie converting email address to
    ascii ??
    Any help would be much appreciated.
    Cheers

    FYI...our organization has a dash (-) in the domain name and
    have no problems sending email via cfmail.
    We're running CFMX7.0.2
    Good luck

  • Dash (-) problems in to param of cfmail tag

    Does coldfusion 7 support having an email address with a dash
    in it. ie
    [email protected]
    I am getting this error in the log.
    Invalid Addresses; nested exception is: class
    javax.mail.SendFailedException: 501 5.5.4 Invalid Address
    This is proving to be a big problem as dealing with many
    users who have email addresses in this format.
    Is there any workaround - ie converting email address to
    ascii ??
    Any help would be much appreciated.
    Cheers

    just put actual string
    http://mysite/usermailregistrationpage?code=ADGBDGDFGAXAFADFDA
    in the mail body, without surrounding it with <a> or
    anything.
    if your cfmail type is plain (default) it will be shown as
    text, while
    more recent email application may automatically show it as
    link
    (Thunderbird does).
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • CFMAIL - Background Image contained in TD Not Displaying in Outlook

    A backgorund image contained in a <TD width="400" background="http://www.abcdef.com/img/background_B.jpg"> does not appear when the html email message is opened in Outlook. However, if you click the having trouble viewing this email prompt the image does display on the web view. Is this a CFMAIL problem? If so does anyone have a work around for or other ideas where to look for a solution?

    As we don't know your code, your imaging library or anything else that you are doing - and my crystal ball is on the fritz - we can't really help :(.
    However, given that you are talking about CMYK the first question is about whether you a re working on a CMYK surface or converting to RGB?  If converting, how?
    Second, what filter is applied to the image?  DCT? Flate?  Other?
    Third, are you considering any DecodeParms on the image?
    Fourth, is the image indexed or not?
    And the list goes on..

  • Cfform or cfmail troubles

    I am lost, I am new to ColdFusion and am trying to create a "Contact Us" page. I have a form made up with all the fields that I need on the page. I want it to email the form to "[email protected]" upon hitting submit. However I am stuck and cannot get the form to work properly. Can somebody, anybody help
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/main-2-col.dwt.cfm" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Contact </title>
    <meta name="keywords" content="emergency management, consultants" />
    <meta name="description" content="Consultants" />
    <meta name="robots" content="index,follow" />
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
    <link href="styles/styles-index.css" rel="stylesheet" type="text/css" />
    <link href="styles/styles-index-col-table.css" rel="stylesheet" type="text/css" />
    <link href="styles/styles-index-mobile.css" rel="stylesheet" media="handheld" type="text/css" />
    <script type="text/javascript" src="/CFIDE/scripts/cfform.js"></script>
    <script type="text/javascript" src="/CFIDE/scripts/masks.js"></script>
    <script type="text/javascript">
    <!--
        function  _CF_checkCFForm_1(_CF_this)
            //reset on submit
            _CF_error_exists = false;
            _CF_error_messages = new Array();
            _CF_error_fields = new Object();
            _CF_FirstErrorField = null;
            //form element Name required check
            if( !_CF_hasValue(_CF_this['Name'], "TEXT", false ) )
                _CF_onError(_CF_this, "Name", _CF_this['Name'].value, "Please enter your name.");
                _CF_error_exists = true;
            //form element Phone required check
            if( !_CF_hasValue(_CF_this['Phone'], "TEXT", false ) )
                _CF_onError(_CF_this, "Phone", _CF_this['Phone'].value, "Please enter your phone number.");
                _CF_error_exists = true;
            //form element Email required check
            if( !_CF_hasValue(_CF_this['Email'], "TEXT", false ) )
                _CF_onError(_CF_this, "Email", _CF_this['Email'].value, "Please enter your email.");
                _CF_error_exists = true;
            //form element Answer required check
            if( _CF_hasValue(_CF_this['Answer'], "TEXT", false ) )
                //form element Answer 'INTEGER' validation checks
                if (!_CF_checkinteger(_CF_this['Answer'].value, true))
                    _CF_onError(_CF_this, "Answer", _CF_this['Answer'].value, "Please enter the answer.");
                    _CF_error_exists = true;
            }else {
                _CF_onError(_CF_this, "Answer", _CF_this['Answer'].value, "Please enter the answer.");
                _CF_error_exists = true;
            //display error messages and return success
            if( _CF_error_exists )
                if( _CF_error_messages.length > 0 )
                    // show alert() message
                    _CF_onErrorAlert(_CF_error_messages);
                    // set focus to first form error, if the field supports js focus().
                    if( _CF_this[_CF_FirstErrorField].type == "text" )
                    { _CF_this[_CF_FirstErrorField].focus(); }
                return false;
            }else {
                return true;
    //-->
    </script>
    </head>
    <body>
    <!--- define the action page in the form tag. The form variables will
        pass to this page when the form is submitted --->
    <a name="Top" id="Top"></a>
    <div id="masthead"></div>
    <div id="topnav">  <ul>
       <li><a href="index.cfm">Home</a></li>
      <li><a href="philosophy-mission.cfm">PHILOSOPHY & MISSION</a></li>
      <li><a href="services.cfm">SERVICES</a></li>
      <li><a href="contact.cfm">CONTACT</a></li>
      <li><a href="about-us.cfm">ABOUT US</a> </li>
      <li><a href="index.cfm">HOME</a></li
      </ul>
    </div>
    <div id="contentouter">
    <div id="content"><!-- InstanceBeginEditable name="body" -->
      <div id="middlecontent">
        <h1>Contact Us</h1>
        <p>Phone: ###-###-####</p>
        <p>Postal:  </p>
        <hr />
        <h2>Information Request Form </h2>
            <div id="form">
                                    <table width="90%" border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                            <td>
                                                <p align="center">Please complete the fields below and we will respond to your inquiry within 48 hours.</p>
                                            </td>
                                        </tr>
                                    </table>
                                    <p></p>
                                    <table width="90%" border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                            <td>
                                                <p align="right">First Name:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="First Name" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Last Name:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="Last Name" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Address Street 1:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="Address Street 1" size="30" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Address Street 2:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="Address Street 2" size="30" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">City:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="City" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Zip Code:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="Zip Code" size="5" maxlength="5" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">State:</p>
                                            </td>
                                            <td>
                                                <p><select name="State">
                                                        <option value="AL">AL</option>
                                                        <option value="AK">AK</option>
                                                        <option value="AZ">AZ</option>
                                                        <option value="AR">AR</option>
                                                        <option value="CA">CA</option>
                                                        <option value="CO">CO</option>
                                                        <option value="CT">CT</option>
                                                        <option value="DE">DE</option>
                                                        <option value="DC">DC</option>
                                                        <option value="FL">FL</option>
                                                        <option value="GA">GA</option>
                                                        <option value="HI">HI</option>
                                                        <option value="ID">ID</option>
                                                        <option value="IL">IL</option>
                                                        <option value="IN">IN</option>
                                                        <option value="IA">IA</option>
                                                        <option value="KS">KS</option>
                                                        <option value="KY">KY</option>
                                                        <option value="LA">LA</option>
                                                        <option value="ME">ME</option>
                                                        <option value="MD">MD</option>
                                                        <option value="MA">MA</option>
                                                        <option value="MI">MI</option>
                                                        <option value="MN">MN</option>
                                                        <option value="MS">MS</option>
                                                        <option value="MO">MO</option>
                                                        <option value="MT">MT</option>
                                                        <option value="NE">NE</option>
                                                        <option value="NV">NV</option>
                                                        <option value="NH">NH</option>
                                                        <option value="NJ">NJ</option>
                                                        <option value="NM">NM</option>
                                                        <option value="NY">NY</option>
                                                        <option value="NC">NC</option>
                                                        <option value="ND">ND</option>
                                                        <option value="OH">OH</option>
                                                        <option value="OK">OK</option>
                                                        <option value="OR">OR</option>
                                                        <option value="PA">PA</option>
                                                        <option value="RI">RI</option>
                                                        <option value="SC">SC</option>
                                                        <option value="SD">SD</option>
                                                        <option value="TN">TN</option>
                                                        <option value="TX">TX</option>
                                                        <option value="UT">UT</option>
                                                        <option value="VT">VT</option>
                                                        <option value="VA">VA</option>
                                                        <option value="WA">WA</option>
                                                        <option value="WV">WV</option>
                                                        <option value="WI">WI</option>
                                                        <option value="WY">WY</option>
                                                    </select></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Daytime Phone:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="Daytime Phone" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Evening Phone:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="Evening Phone" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Email:</p>
                                            </td>
                                            <td>
                                                <p><input type="text" name="Email" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Comments:</p>
                                            </td>
                                            <td>
                                                <p><textarea name="Comments" cols="38"></textarea></p>
                                            </td>
                                        </tr>
                                    </table>
                                    <p><!--  submit button --><input type="submit" name="SubmitForm" value="Submit">
                                        <!-- reset button --> <input type="reset" name="ResetForm" value="Clear Form"></p>
                                </div>
      </div>
      <div id="rightcontent">
        <h2>Located where you and your business are.</h2>
        <p>Upon setting up a seminar date we will travel to your location. </p>
      </div></form>
    <!-- InstanceEndEditable --></div>
    <div id="contentpush"></div>
    </div>
    <div id="footer">
      <p><a href="#Top">Return to Top</a></p>
      <p><a href="index.cfm">Home</a> | <a href="philosophy-mission.cfm">Philosophy &amp; Mission</a> |
        <a href="services.cfm">Services</a> | <a href="contact.cfm">Contact</a> | <a href="about-us.cfm">About Us</a> | <a href="index.cfm">Home</a></p>
    </div>
    </body>
    </html>

    1) The Javascript tags suggest you want automatic validation for the form fields. The proper tag for this is <cfform>. Simply add the attributes 'required' to the input fields. Coldfusion would then automatically generate the Javascript for you.
    2) You should surround a comment in Coldfusion like this <!--- comment --->, not like this <!-- comment -->.
    3) Remove any redundant information.
    4) The cfmail tag will be in the action page which, in my example, is myActionPage.cfm.
    <html>
    <head>
    <title>Contact </title>
    <meta name="keywords" content="emergency management, consultants" />
    <meta name="description" content="Consultants" />
    <meta name="robots" content="index,follow" />
    <link href="styles/styles-index.css" rel="stylesheet" type="text/css" />
    <link href="styles/styles-index-col-table.css" rel="stylesheet" type="text/css" />
    <link href="styles/styles-index-mobile.css" rel="stylesheet" media="handheld" type="text/css" /> 
    </head>
    <body>
    <a name="Top" id="Top"></a>
    <div id="masthead"></div>
    <div id="topnav">  <ul>
       <li><a href="index.cfm">Home</a></li>
      <li><a href="philosophy-mission.cfm">PHILOSOPHY & MISSION</a></li>
      <li><a href="services.cfm">SERVICES</a></li>
      <li><a href="contact.cfm">CONTACT</a></li>
      <li><a href="about-us.cfm">ABOUT US</a> </li>
      <li><a href="index.cfm">HOME</a></li
      </ul>
    </div>
    <div id="contentouter">
    <div id="content">
      <div id="middlecontent">
        <h1>Contact Us</h1>
        <p>Phone: ###-###-####</p>
        <p>Postal:  </p>
        <hr />
        <h2>Information Request Form </h2>
            <div id="form">
                                    <table width="90%" border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                            <td>
                                                <p align="center">Please complete the fields below and we will respond to your inquiry within 48 hours.</p>
                                            </td>
                                        </tr>
                                    </table>
                                    <!--- define the action page in the form tag. The form variables will
        pass to this page when the form is submitted --->
                                    <cfform action="myActionPage.cfm" method="post">
                                    <table width="90%" border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                            <td>
                                                <p align="right">First Name:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="FirstName" required="yes" message="Please enter your first name." /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Last Name:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="LastName" required="yes" message="Please enter your last name." /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Address Street 1:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="Address_Street_1" size="30" required="yes" message="Please enter your addres." /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Address Street 2:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="Address_Street_2" size="30" required="yes" message="" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">City:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="City" required="yes" message="Please enter your city." /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Zip Code:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="ZipCode" size="5" maxlength="5" required="yes" message="Please enter your zip code." /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">State:</p>
                                            </td>
                                            <td>
                                                <p><cfselect name="State">
                                                        <option value="AL">AL</option>
                                                        <option value="AK">AK</option>
                                                        <option value="AZ">AZ</option>
                                                        <option value="AR">AR</option>
                                                        <option value="CA">CA</option>
                                                        <option value="CO">CO</option>
                                                        <option value="CT">CT</option>
                                                        <option value="DE">DE</option>
                                                        <option value="DC">DC</option>
                                                        <option value="FL">FL</option>
                                                        <option value="GA">GA</option>
                                                        <option value="HI">HI</option>
                                                        <option value="ID">ID</option>
                                                        <option value="IL">IL</option>
                                                        <option value="IN">IN</option>
                                                        <option value="IA">IA</option>
                                                        <option value="KS">KS</option>
                                                        <option value="KY">KY</option>
                                                        <option value="LA">LA</option>
                                                        <option value="ME">ME</option>
                                                        <option value="MD">MD</option>
                                                        <option value="MA">MA</option>
                                                        <option value="MI">MI</option>
                                                        <option value="MN">MN</option>
                                                        <option value="MS">MS</option>
                                                        <option value="MO">MO</option>
                                                        <option value="MT">MT</option>
                                                        <option value="NE">NE</option>
                                                        <option value="NV">NV</option>
                                                        <option value="NH">NH</option>
                                                        <option value="NJ">NJ</option>
                                                        <option value="NM">NM</option>
                                                        <option value="NY">NY</option>
                                                        <option value="NC">NC</option>
                                                        <option value="ND">ND</option>
                                                        <option value="OH">OH</option>
                                                        <option value="OK">OK</option>
                                                        <option value="OR">OR</option>
                                                        <option value="PA">PA</option>
                                                        <option value="RI">RI</option>
                                                        <option value="SC">SC</option>
                                                        <option value="SD">SD</option>
                                                        <option value="TN">TN</option>
                                                        <option value="TX">TX</option>
                                                        <option value="UT">UT</option>
                                                        <option value="VT">VT</option>
                                                        <option value="VA">VA</option>
                                                        <option value="WA">WA</option>
                                                        <option value="WV">WV</option>
                                                        <option value="WI">WI</option>
                                                        <option value="WY">WY</option>
                                                    </cfselect></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Daytime Phone:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="Daytime_Phone" required="yes" message="Please enter your daytime phone number." /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Evening Phone:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="Evening_Phone" required="yes" message="" /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Email:</p>
                                            </td>
                                            <td>
                                                <p><cfinput type="text" name="Email" required="yes" message="Please enter your email address." /></p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <p align="right">Comments:</p>
                                            </td>
                                            <td>
                                                <p><cftextarea name="Comments" cols="38"></cftextarea></p>
                                            </td>
                                        </tr>
                                    </table>
                                    <p><!---  submit button ---><cfinput type="submit" name="SubmitForm" value="Submit">
                                        <!--- reset button ---> <cfinput type="reset" name="ResetForm" value="Clear Form"></p>
                                </div>
      </div>
      <div id="rightcontent">
        <h2>Located where you and your business are.</h2>
        <p>Upon setting up a seminar date we will travel to your location. </p>
      </div></cfform>
    <!---InstanceEndEditable---></div>
    <div id="contentpush"></div>
    </div>
    <div id="footer">
      <p><a href="#Top">Return to Top</a></p>
      <p><a href="index.cfm">Home</a> | <a href="philosophy-mission.cfm">Philosophy &amp; Mission</a> |
        <a href="services.cfm">Services</a> | <a href="contact.cfm">Contact</a> | <a href="about-us.cfm">About Us</a> | <a href="index.cfm">Home</a></p>
    </div>
    </body>
    </html>

Maybe you are looking for

  • Failed to deploy a simple application on weblogic 10.3.3.0

    Hi All, I'am unable to deploy a very simple War file application by ant task (weblogic ant task weblogic.ant.taskdefs.management.WLDeploy). I find how to cause this problem,but I can't resolve it . In my war file ,include one file with chinese file n

  • I bought a new iMac and am giving my old iMac to my brother.  I do not have my installation disk.  How do I erase all my information?

    I recently bought a new iMac and am giving my old iMac to my brother.  I read up on how to erase my information before handing it over to my brother but they process included having my installation disk.  I do not have that disk.  I need to erase my

  • LogicPro 8.0.2 crashes at File:Open...

    Logic is now crashing each time I try to open a session.  All I have to do is navigate to File:Open... and Logic crashes immediately, before even giving me a dialogue window to choose a file in. I'm running LogicPro 8.0.2 on a Mac Pro 2 x 2.8 GHz Int

  • AS2 testing problem

    Hi Experts, We have Seeburger scenrio while testing with My partner received HTTP Error 403 forbidden. For configuration we are using AS2 adapter. what does this mean is it we are having cofiguration problem or is it partner setup. Regards, J

  • Delay in video and Audio

    I use iChat to video chat with two friends in the UK. One is a o2 user and the other is a talktalk user. Wen chatting we experience an up to 7 seconds delay in voice and Video and audio. When we change to Skype there is no delay. Can you explain and