>From the mainframe side, nothing... On the server side probably... We've been using gmail for a while, but the vendor is making changes constantly... Perhaps the vendor cares that it's wrong... What do I do to fix it?
*George Rodriguez* *Specialist II - IT Solutions* *IT Enterprise Applications* *PX - 47652* *(561) 357-7652 (office)* *(561) 707-3496 (mobile)* *School District of Palm Beach County* *3348 Forest Hill Blvd.* *Room B-251* *West Palm Beach, FL. 33406-5869* *Florida's Only A-Rated Urban District For Eight Consecutive Years* On Wed, Mar 5, 2014 at 2:25 PM, Greg Shirey <[email protected]> wrote: > George, > > Here's a guess - it looks to me like this section of code is being > executed: > if from_center = center then > from_default = uid||AtSignC||center"."domain > > The variable "domain" has not been assigned a value, so the value is > 'DOMAIN' and "center" has been assigned the value "PAL6". > > It looks like "center" gets assigned in this section: > /* ------------------------------------------------------ * > * Define the Center, or NJE Node, where the SMTP * > * Server is running. * > * * > * If the SMTP Server is running in the active Node then * > * no change is required as it is dynamically determined. * > * ------------------------------------------------------ */ > Center = sysvar('sysnode') > From_Center = center > > The comment directly above it says that this code doesn't need to be > modified if the SMTP server is running in the active Node. > > So, if these variables have values you are not expecting, it looks like it > might have to do with the SMTP server. Anything changed there recently? > > Greg > > > -----Original Message----- > From: IBM Mainframe Discussion List [mailto:[email protected]] On > Behalf Of George Rodriguez > Sent: Wednesday, March 05, 2014 11:53 AM > To: [email protected] > Subject: Re: Problem Using XMITIP > > Greg, > > Here's what I have fro those values: > > /* ----------------------------------------------------- * > * append_domain * > * if not null then used to append to e-mail addresses * > * that are specified without a domain. * > * Note: do NOT code the @ symbol - it will be added * > * by default. * > * ----------------------------------------------------- */ append_domain > = null > /* ------------------------------------------------------ * > * Define the Center, or NJE Node, where the SMTP * > * Server is running. * > * * > * If the SMTP Server is running in the active Node then * > * no change is required as it is dynamically determined. * > * ------------------------------------------------------ */ > Center = sysvar('sysnode') > From_Center = center > /* ----------------------------------------------------- * > * Setup the From Default * > * This section should be customized for each shop * > * or at least reviewed. Interlink users must customize * > * * > * Note: if fromreq is enabled (non-zero) then * > * from_default can be * and will cause the * > * user specified from to be used for the sender * > * ----------------------------------------------------- */ > msgid = sysvar("sysicmd")":" > if length(msgid) = 1 then > msgid = sysvar("syspcmd")":" > uid = sysvar('sysuid') > atsignc = left(atsign,1) > if from_center = center then > from_default = uid||AtSignC||center"."domain > else > from_default = uid"%"from_center||AtSignC|| , > center"."smtp_domain > /* ----------------------------------------------------------- * > * FromReq used to require a FROM e-mail address in the XMITIP * > * command. * > * * > * Values: 0 - not required * > * 1 - required * > * "[email protected]" - code in quotes to avoid * > * translation to upper case * > * * > * If an address then an e-mail is sent to that address for * > * logging purposes. * > * ----------------------------------------------------------- * FromReq > = 0 > /* FromReq = "[email protected]" */ > /* ----------------------------------------------- * > * Restrict_Domain * > * If null then no action. * > * If set then all e-mails sent must end with * > * the specified domain. * > * ----------------------------------------------- */ restrict_domain = > null > /* restrict_domain = "host.com" */ > > It doesn't explain why the DOMAIN name is not changing... > > > *George Rodriguez* > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to [email protected] with the message: INFO IBM-MAIN > -- *The District is participating in* *Take your Daughters and Sons To Work Day <http://news.palmbeach.k12.fl.us/pao/2014/02/20/school-district-take-our-daughters-and-sons-to-work-day-thursday-march-6-2014/> on* *Thursday, March 6, 2014.* *Disclaimer: *Under Florida law, e-mail addresses are public records. If you do not want your e-mail address released in response to a public records request, do not send electronic mail to this entity. Instead, contact this office by phone or in writing. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
