Re: IBM-MAIN subscription

2017-01-28 Thread Jesse 1 Robinson
Thanks David for this illumination. All we're looking for is some kind of 
nonblank FROM <> value that passes validation on the receiving side. My 
internal PMR is still open, but I'm expecting this to be the diagnosis. Without 
knowing any of the internals, I can verify that other list servers like ISPF-L 
and TSO-REXX seem to get around this problem somehow. 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of David Boyes
Sent: Saturday, January 28, 2017 5:35 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):IBM-MAIN subscription

>My analysis: There is something missing in the confirmation email that 
>causes my company email system (Outlook) to reject the note as spam

>without notification. My home email does not have the same filter. I 
>cannot look at headers for the failing notes because--I never get them. 
>My

>earlier explanation is from memory of a past conversation with an email 
>tech who was able to look at a rejected note. I don't recall the exact

>missing tag(s).



It's actually on the mail server itself, not the client. This is another one 
caused by "the spec says X, but real life has proved that this was OK in theory 
but not so great in practice, so it's now forbidden by most common 
implementations".



When you send a subscribe request to any list managed by Lsoft's LISTSERV (like 
this one), the server responds with a message constructed to have a MAIL FROM: 
<> as part of the SMTP envelope. This was originally put in the spec to handle 
mail generated by any kind of robot/automated responder - there's no human to 
respond to the notification, so the response is sent with an empty source 
address.



Unfortunately, this became widely used by spammers and DoS attacks so they 
wouldn't have to fake a believable From address for each mail, so most modern 
implementations now reject anything with a MAIL FROM: <> line. (As a side note, 
this is the first case of this kind of operational filtering via code 
implemented in the common SMTP daemons - the DNS requirement was added on for 
the same reason).



You can test this by doing:



telnet your.mail.server 25

HELO foo

MAIL FROM: <>



You should get an error message at this point.



There's a list of these techniques and "agreements" in a modern email system in 
RFC2505.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription

2017-01-29 Thread Mike Schwab
How about FROM: , or FROM: ?

On Sat, Jan 28, 2017 at 8:04 PM, Jesse 1 Robinson
 wrote:
> Thanks David for this illumination. All we're looking for is some kind of 
> nonblank FROM <> value that passes validation on the receiving side. My 
> internal PMR is still open, but I'm expecting this to be the diagnosis. 
> Without knowing any of the internals, I can verify that other list servers 
> like ISPF-L and TSO-REXX seem to get around this problem somehow.
>
> .
> .
> J.O.Skip Robinson
> Southern California Edison Company
> Electric Dragon Team Paddler
> SHARE MVS Program Co-Manager
> 323-715-0595 Mobile
> 626-543-6132 Office ⇐=== NEW
> robin...@sce.com
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On 
> Behalf Of David Boyes
> Sent: Saturday, January 28, 2017 5:35 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: (External):IBM-MAIN subscription
>
>>My analysis: There is something missing in the confirmation email that
>>causes my company email system (Outlook) to reject the note as spam
>
>>without notification. My home email does not have the same filter. I
>>cannot look at headers for the failing notes because--I never get them.
>>My
>
>>earlier explanation is from memory of a past conversation with an email
>>tech who was able to look at a rejected note. I don't recall the exact
>
>>missing tag(s).
>
>
>
> It's actually on the mail server itself, not the client. This is another one 
> caused by "the spec says X, but real life has proved that this was OK in 
> theory but not so great in practice, so it's now forbidden by most common 
> implementations".
>
>
>
> When you send a subscribe request to any list managed by Lsoft's LISTSERV 
> (like this one), the server responds with a message constructed to have a 
> MAIL FROM: <> as part of the SMTP envelope. This was originally put in the 
> spec to handle mail generated by any kind of robot/automated responder - 
> there's no human to respond to the notification, so the response is sent with 
> an empty source address.
>
>
>
> Unfortunately, this became widely used by spammers and DoS attacks so they 
> wouldn't have to fake a believable From address for each mail, so most modern 
> implementations now reject anything with a MAIL FROM: <> line. (As a side 
> note, this is the first case of this kind of operational filtering via code 
> implemented in the common SMTP daemons - the DNS requirement was added on for 
> the same reason).
>
>
>
> You can test this by doing:
>
>
>
> telnet your.mail.server 25
>
> HELO foo
>
> MAIL FROM: <>
>
>
>
> You should get an error message at this point.
>
>
>
> There's a list of these techniques and "agreements" in a modern email system 
> in RFC2505.
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN



-- 
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription

2017-02-02 Thread Jesse 1 Robinson
My email tech just verified that the confirmation notes (only!) 'do not have a 
valid sender email address' and therefore get quarantined by our email system. 
Deleted after 4 days. Since other(s) seem to also have this problem, I think a 
fix to List Server 16.0 would be in order. 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Mike Schwab
Sent: Sunday, January 29, 2017 12:47 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: IBM-MAIN subscription

How about FROM: , or FROM: ?

On Sat, Jan 28, 2017 at 8:04 PM, Jesse 1 Robinson  
wrote:
> Thanks David for this illumination. All we're looking for is some kind of 
> nonblank FROM <> value that passes validation on the receiving side. My 
> internal PMR is still open, but I'm expecting this to be the diagnosis. 
> Without knowing any of the internals, I can verify that other list servers 
> like ISPF-L and TSO-REXX seem to get around this problem somehow.
>
> .
> .
> J.O.Skip Robinson
> Southern California Edison Company
> Electric Dragon Team Paddler
> SHARE MVS Program Co-Manager
> 323-715-0595 Mobile
> 626-543-6132 Office ⇐=== NEW
> robin...@sce.com
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] 
> On Behalf Of David Boyes
> Sent: Saturday, January 28, 2017 5:35 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: (External):IBM-MAIN subscription
>
>>My analysis: There is something missing in the confirmation email that 
>>causes my company email system (Outlook) to reject the note as spam
>
>>without notification. My home email does not have the same filter. I 
>>cannot look at headers for the failing notes because--I never get them.
>>My
>
>>earlier explanation is from memory of a past conversation with an 
>>email tech who was able to look at a rejected note. I don't recall the 
>>exact
>
>>missing tag(s).
>
>
>
> It's actually on the mail server itself, not the client. This is another one 
> caused by "the spec says X, but real life has proved that this was OK in 
> theory but not so great in practice, so it's now forbidden by most common 
> implementations".
>
>
>
> When you send a subscribe request to any list managed by Lsoft's LISTSERV 
> (like this one), the server responds with a message constructed to have a 
> MAIL FROM: <> as part of the SMTP envelope. This was originally put in the 
> spec to handle mail generated by any kind of robot/automated responder - 
> there's no human to respond to the notification, so the response is sent with 
> an empty source address.
>
>
>
> Unfortunately, this became widely used by spammers and DoS attacks so they 
> wouldn't have to fake a believable From address for each mail, so most modern 
> implementations now reject anything with a MAIL FROM: <> line. (As a side 
> note, this is the first case of this kind of operational filtering via code 
> implemented in the common SMTP daemons - the DNS requirement was added on for 
> the same reason).
>
>
>
> You can test this by doing:
>
>
>
> telnet your.mail.server 25
>
> HELO foo
>
> MAIL FROM: <>
>
>
>
> You should get an error message at this point.
>
>
>
> There's a list of these techniques and "agreements" in a modern email system 
> in RFC2505.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription

2017-02-02 Thread Paul Gilmartin
On 2017-02-02, at 12:13, Jesse 1 Robinson wrote:

> My email tech just verified that the confirmation notes (only!) 'do not have 
> a valid sender email address' and therefore get quarantined by our email 
> system. Deleted after 4 days. Since other(s) seem to also have this problem, 
> I think a fix to List Server 16.0 would be in order. 
>  
In order, but unlikely.  For years I have complained to list owners that when
I attempt to Reply via the web interface and quote the original message which
happens to be base64 encoded (as yours is), the quote command fetches unrendered
base4.  No resolution (but the list owners have never acknowleged the report).

And L-Soft requires a customer ID to submit an SR.

-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription

2017-02-11 Thread Jesse 1 Robinson
No closer to a resolution. I have verified with our email staff that the 
IBM-MAIN confirmation email arrives here with no sender specified. This makes 
the note indistinguishable from scatter spam and causes immediate quarantine, 
so I never see it. 

By contrast, I just (re)subscribed to the TSO-REXX list at Marist. Notes came 
back to my inbox, although there seems to be no actual confirmation message. 
One conspicuous difference is that the UA List Server software says 16.0, while 
the Marist notes indicate 14.4. According to Gil, only the licensee can open an 
issue with L-Soft.  

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Paul Gilmartin
Sent: Thursday, February 02, 2017 2:44 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: IBM-MAIN subscription

On 2017-02-02, at 12:13, Jesse 1 Robinson wrote:

> My email tech just verified that the confirmation notes (only!) 'do not have 
> a valid sender email address' and therefore get quarantined by our email 
> system. Deleted after 4 days. Since other(s) seem to also have this problem, 
> I think a fix to List Server 16.0 would be in order. 
>  
In order, but unlikely.  For years I have complained to list owners that when I 
attempt to Reply via the web interface and quote the original message which 
happens to be base64 encoded (as yours is), the quote command fetches 
unrendered base4.  No resolution (but the list owners have never acknowleged 
the report).

And L-Soft requires a customer ID to submit an SR.

-- gil


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription

2017-02-12 Thread Jesse 1 Robinson
I'm fully on board with "Subscription=Open,Confirm" if it makes email safer in 
general. What frosts me is that the "D" of WAD misses the mark and is actually 
counterproductive. I'm told (!) that we have implemented what we lovingly call 
'industry best practice' in quarantining any email with no sender specified. It 
does not matter what the sender field contains; it just cannot be blank. So 
send the confirmation note with something--anything--in that field, and all 
will be well.

I cannot imagine any technical or policy reason for leaving that field blank. 
It has Omission written all over it. This problem affects multiple shops. If 
should be fixed at the source.  

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of David Boyes
Sent: Sunday, February 12, 2017 10:55 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):IBM-MAIN subscription

> No closer to a resolution. I have verified with our email staff that the 
> IBM-MAIN confirmation email arrives here with no sender specified. 
>This makes the note indistinguishable from scatter spam and causes immediate 
>quarantine, so I never see it. 
> By contrast, I just (re)subscribed to the TSO-REXX list at Marist. 
>Notes came back to my inbox, although there seems to be no actual  
>confirmation message. One conspicuous difference is that the UA List Server 
>software says 16.0, while the Marist notes indicate 14.4.
> According to Gil, only the licensee can open an issue with L-Soft.  

The key option in the list definition is " Subscription= Open,Confirm". The 
problem is triggered by the ",Confirm" option - the problem messages are 
generated by the logic backing that option. Downside of removing this is that 
removing it would allow "drive-by" lusers to subscribe, send spam, and 
unsubscribe, and the spammer community actively looks for this kind of thing. 
 (FWIW, requests for 
IBM-MAIN subscriptions sent to Marist or any other LISTSERV site are 
automagically forwarded to listserv.ua.edu, so the problem is still present in 
the code that UA.EDU runs).

Speculation: I suspect the response to any bug report here will be closed WAD 
(working as designed). When Eric Thomas introduced the confirmation logic to 
LISTSERV, I argued with him about this implementation (jeez, has it really been 
20+ years ago?). His response was something to the effect of "RFCs explicitly 
require accepting messages with this construct (the null MAIL FROM: line), and 
LISTSERV will comply with that." I doubt he's changed his mind over the 
intervening years, and there are external standards that support his 
implementation (RFC 2505, for example).

If you run sendmail on your mail server(or as a front end to another SMTP 
implementation), I can give you a snippet of M4 code that you can insert into 
your sendmail.cf that will rewrite a null MAIL FROM into an address of your 
choice (no-reply@yourdomain, or something similar). Can't do anything about the 
other SMTP daemons, and it breaks some of the other logic in LISTSERV's 
assumptions, but it does allow your email guys to not open up any new holes in 
their armor. If you combine that with a procmail script that responds to the 
no-reply address with the instructions on how to respond to LISTSERV 
verification messages, you've got it as covered as it is going to be.

Another thing: ask your email guys if they have implemented SPF lookups for 
your mail system. Won't fix the MAIL FROM problem by itself, but goes a long 
way to making it really hard to forge messages coming in for random domains 
(SPF allows mail systems to declare what mail servers are "official" for a 
domain in the DNS and for others to verify that the email is coming from the 
official servers only). That may make your email guys willing to relax their 
rules about null MAIL FROMs.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription

2017-02-12 Thread Paul Gilmartin
On 2017-02-12, at 15:56, Jesse 1 Robinson wrote:

> I'm fully on board with "Subscription=Open,Confirm" if it makes email safer 
> in general. What frosts me is that the "D" of WAD misses the mark and is 
> actually counterproductive. I'm told (!) that we have implemented what we 
> lovingly call 'industry best practice' in quarantining any email with no 
> sender specified. It does not matter what the sender field contains; it just 
> cannot be blank. So send the confirmation note with something--anything--in 
> that field, and all will be well.
> 
> I cannot imagine any technical or policy reason for leaving that field blank. 
> It has Omission written all over it. This problem affects multiple shops. If 
> should be fixed at the source.  
>  
I see that, as you said, messages posted to IBM-MAIN have "Sender:"; 
confirmation
requests lack it.  Can you or your email tech retrieve *just*one* confirmation
request from quarantine so you can confirm, they you'll be home free?

(TSO-REXX is the same way.)

-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription

2017-02-12 Thread Paul Gilmartin
On 2017-02-12, at 15:56, Jesse 1 Robinson wrote:
> 
> I cannot imagine any technical or policy reason for leaving that field blank. 
> It has Omission written all over it. This problem affects multiple shops. If 
> should be fixed at the source.  
> 
From RFC 822:

 4.4.1.  FROM / RESENT-FROM

This field contains the identity of the person(s)  who  wished
this  message to be sent.  The message-creation process should
default this field  to  be  a  single,  authenticated  machine
address,  indicating  the  AGENT  (person,  system or process)
entering the message.  If this is not done, the "Sender" field
MUST  be  present.  If the "From" field IS defaulted this way,
the "Sender" field is  optional  and  is  redundant  with  the
"From"  field.   In  all  cases, addresses in the "From" field
must be machine-usable (addr-specs) and may not contain  named
lists (groups).

 4.4.2.  SENDER / RESENT-SENDER

This field contains the authenticated identity  of  the  AGENT
(person,  system  or  process)  that sends the message.  It is
intended for use when the sender is not the author of the mes-
sage,  or  to  indicate  who among a group of authors actually
sent the message.  If the contents of the "Sender" field would
be  completely  redundant  with  the  "From"  field,  then the
"Sender" field need not be present and its use is  discouraged
(though  still legal).  In particular, the "Sender" field MUST
be present if it is NOT the same as the "From" Field...

(Emphasis added, I hope.)  And in RFC 2822:
   ...  If the originator of the message can be indicated
   by a single mailbox and the author and transmitter are identical, the
   "Sender:" field SHOULD NOT be used.
So LISTSERV is following the recommendation
(... discouraged ... SHOULD NOT ... ) and your MTA seems to be deviating.

But in other contexts, experts have said that the venerable standards
invite threats and must be disobeyed.

-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription (was HMC Mail domain)

2017-01-27 Thread Tom Marchant
On Fri, 27 Jan 2017 17:01:58 +, Jesse 1 Robinson wrote:

>My analysis: There is something missing in the confirmation email that causes 
>my company email system (Outlook) to reject the note as spam without 
>notification.

And it didn't go into your Junk folder?

-- 
Tom Marchant

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription (was HMC Mail domain)

2017-01-27 Thread Carmen Vitullo
At two places I worded at, one using Lotus Notes I never see Junk mail and some 
good mail unless I call the help desk 
and now here, currently MS-OE some mail deemed as junk never gets to me, they 
use a google service to weed out junk, and i get a quarantine email message 
telling me what emails was not delivered and an option to mark as not spam 

- Original Message -

From: "Tom Marchant" <000a2a8c2020-dmarc-requ...@listserv.ua.edu> 
To: IBM-MAIN@LISTSERV.UA.EDU 
Sent: Friday, January 27, 2017 12:25:37 PM 
Subject: Re: IBM-MAIN subscription (was HMC Mail domain) 

On Fri, 27 Jan 2017 17:01:58 +, Jesse 1 Robinson wrote: 

>My analysis: There is something missing in the confirmation email that causes 
>my company email system (Outlook) to reject the note as spam without 
>notification. 

And it didn't go into your Junk folder? 

-- 
Tom Marchant 

-- 
For IBM-MAIN subscribe / signoff / archive access instructions, 
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription (was HMC Mail domain)

2017-01-27 Thread Mike Beer

There is a lot of things that can happen:

- the sender may be blacklisted (i.e. sending IP-address is 
automatically rejected)
- reverse DNS lookup does not work (i.e. symbolical name does not match 
IP address)

- no or incorrect SPF-entry (sender policy framework)
- other local filters may interpret mail as spam and reject..

and some more...

sending and receiving emails can get quite complex...

Best regards

Mike

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription (was HMC Mail domain)

2017-01-27 Thread Jesse 1 Robinson
That is my current company email situation. It may seem heavy handed, but notes 
deemed to be spam are simply flushed. My predefined Junk folder contains only 
what I put there by inbox rule. I can take the issue back to the email guru who 
originally diagnosed the problem if there's some hope of finding a generalized 
solution. 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Carmen Vitullo
Sent: Friday, January 27, 2017 10:36 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: IBM-MAIN subscription (was HMC Mail domain)

At two places I worded at, one using Lotus Notes I never see Junk mail and some 
good mail unless I call the help desk and now here, currently MS-OE some mail 
deemed as junk never gets to me, they use a google service to weed out junk, 
and i get a quarantine email message telling me what emails was not delivered 
and an option to mark as not spam 

- Original Message -

From: "Tom Marchant" <000a2a8c2020-dmarc-requ...@listserv.ua.edu>
To: IBM-MAIN@LISTSERV.UA.EDU
Sent: Friday, January 27, 2017 12:25:37 PM
Subject: Re: IBM-MAIN subscription (was HMC Mail domain) 

On Fri, 27 Jan 2017 17:01:58 +, Jesse 1 Robinson wrote: 

>My analysis: There is something missing in the confirmation email that causes 
>my company email system (Outlook) to reject the note as spam without 
>notification. 

And it didn't go into your Junk folder? 

--
Tom Marchant 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN subscription (was HMC Mail domain)

2017-01-27 Thread Jousma, David
That would be great if you could do that.  We have the same problem here with 
newer folks trying to subscribe.   

_
Dave Jousma
Manager Mainframe Engineering, Assistant Vice President
david.jou...@53.com
1830 East Paris, Grand Rapids, MI  49546 MD RSCB2H
p 616.653.8429
f 616.653.2717

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Jesse 1 Robinson
Sent: Friday, January 27, 2017 1:49 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: IBM-MAIN subscription (was HMC Mail domain)

That is my current company email situation. It may seem heavy handed, but notes 
deemed to be spam are simply flushed. My predefined Junk folder contains only 
what I put there by inbox rule. I can take the issue back to the email guru who 
originally diagnosed the problem if there's some hope of finding a generalized 
solution. 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Carmen Vitullo
Sent: Friday, January 27, 2017 10:36 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: IBM-MAIN subscription (was HMC Mail domain)

At two places I worded at, one using Lotus Notes I never see Junk mail and some 
good mail unless I call the help desk and now here, currently MS-OE some mail 
deemed as junk never gets to me, they use a google service to weed out junk, 
and i get a quarantine email message telling me what emails was not delivered 
and an option to mark as not spam 

- Original Message -

From: "Tom Marchant" <000a2a8c2020-dmarc-requ...@listserv.ua.edu>
To: IBM-MAIN@LISTSERV.UA.EDU
Sent: Friday, January 27, 2017 12:25:37 PM
Subject: Re: IBM-MAIN subscription (was HMC Mail domain) 

On Fri, 27 Jan 2017 17:01:58 +, Jesse 1 Robinson wrote: 

>My analysis: There is something missing in the confirmation email that causes 
>my company email system (Outlook) to reject the note as spam without 
>notification. 

And it didn't go into your Junk folder? 

--
Tom Marchant 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN