From Felix.Berlakovich at w.roteskreuz.at Wed Mar 1 15:33:32 2017 From: Felix.Berlakovich at w.roteskreuz.at (Berlakovich Felix (OeRK-W)) Date: Wed, 1 Mar 2017 15:33:32 +0000 Subject: Inline HTML Warning Bug Message-ID: <4506866770f0409e9e6e480a7791a5a2@w.roteskreuz.at> Hi! I think I might have found a bug in the inline HTML warning code in the function "SignWarningMessage" in "Message.pm". I was testing the attachment replacement and inline warning insertion with HTML mails. I noticed that mails created with Outlook had no inline warning inserted. Debugging into the code I found the reason on line 4601. The replacement regex tries to find the "" starting tag, but Outlook additionally inserts a namespace, e.g "" Changing the regex fixes the problem: 4595c4601 < $line =~ s/\/$&$warning/i; --- > $line =~ s/\/$&$warning/i; However, I am not sure about possible consequences. Any recommendations? Best regards Felix -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark at msapiro.net Wed Mar 1 16:38:19 2017 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 1 Mar 2017 08:38:19 -0800 Subject: Inline HTML Warning Bug In-Reply-To: <4506866770f0409e9e6e480a7791a5a2@w.roteskreuz.at> References: <4506866770f0409e9e6e480a7791a5a2@w.roteskreuz.at> Message-ID: <01d428dd-13f5-5637-9778-e998d3bc8c29@msapiro.net> On 03/01/2017 07:33 AM, Berlakovich Felix (OeRK-W) wrote: > > Changing the regex fixes the problem: > > > > 4595c4601 > < $line =~ s/\/$&$warning/i; > --- >> $line =~ s/\/$&$warning/i; > > > However, I am not sure about possible consequences. Any recommendations? I would make it $line =~ s/\]*\>/$&$warning/i; or possibly even $line =~ s/\]*)?\>/$&$warning/i; But even these won't match if the ]*)?(\>|$)/$&$warning/i; but I haven't tested any of this. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan From mailscanner-list at okla.com Wed Mar 1 18:20:22 2017 From: mailscanner-list at okla.com (Tracy Greggs) Date: Wed, 1 Mar 2017 12:20:22 -0600 Subject: Bitdefender wrapper for 4.8x working? Message-ID: <029001d292b8$80de5d60$829b1820$@okla.com> Is anyone using Bitdefender on 4.8x MailScanner, just wanting to verify the wrapper works before I bother with it. Thanks in advance -------------- next part -------------- An HTML attachment was scrubbed... URL: From mailscanner-list at okla.com Wed Mar 1 18:26:08 2017 From: mailscanner-list at okla.com (Tracy Greggs) Date: Wed, 1 Mar 2017 12:26:08 -0600 Subject: About compress file. In-Reply-To: <715ea7af-4949-8407-3167-84403be76124@msapiro.net> References: <715ea7af-4949-8407-3167-84403be76124@msapiro.net> Message-ID: <02a501d292b9$4f45df70$edd19e50$@okla.com> I might strongly suggest to the group to block .ace and .jar files in your conf files as well. Lots of zero day or targeted malware using .ace or .jar attachments. Just my 2 cents :) Tracy Greggs -----Original Message----- From: MailScanner [mailto:mailscanner-bounces+mailscanner-list=okla.com at lists.mailscanner.info] On Behalf Of Mark Sapiro Sent: Friday, February 24, 2017 11:55 PM To: mailscanner at lists.mailscanner.info Subject: Re: About compress file. On 02/24/2017 09:37 PM, ??? wrote: > I compress a execution file. like abc.exe > abc.zip or any compress > (rar gz 7z gzip bzip) > > I want abc.zip can be passed but deny abc.exe . With any MailScanner since 4.76.1 this should be the default behavior. .zip, .gz, .tgz, .Z and .bz2 are all allowed by default. .rar is neither explicitly allowed or denied, but you can always add it to filename.rules.conf. For files inside archives, archives.filename.rules.conf controls and denies .exe by default. For MailScanner prior to 4.76.1 there is no separate archives.filename.rules.conf, but archives should be allowed unless they contain disallowed files. If this is not what you see, please be specific about your MailScanner version and the type of archive and the contents that behave differently. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner From Felix.Berlakovich at w.roteskreuz.at Thu Mar 2 07:49:40 2017 From: Felix.Berlakovich at w.roteskreuz.at (Berlakovich Felix (OeRK-W)) Date: Thu, 2 Mar 2017 07:49:40 +0000 Subject: AW: Inline HTML Warning Bug In-Reply-To: <01d428dd-13f5-5637-9778-e998d3bc8c29@msapiro.net> References: <4506866770f0409e9e6e480a7791a5a2@w.roteskreuz.at> <01d428dd-13f5-5637-9778-e998d3bc8c29@msapiro.net> Message-ID: Hi! > I would make it > > $line =~ s/\]*\>/$&$warning/i; > > or possibly even > > $line =~ s/\]*)?\>/$&$warning/i; > > But even these won't match if the maybe even > > $line =~ s/\]*)?(\>|$)/$&$warning/i; > > but I haven't tested any of this. I have tested the last one and it works fine, thanks for the feedback! Should I open a bug on GitHub? Regards Felix From mark at msapiro.net Thu Mar 2 16:18:32 2017 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 2 Mar 2017 08:18:32 -0800 Subject: AW: Inline HTML Warning Bug In-Reply-To: References: <4506866770f0409e9e6e480a7791a5a2@w.roteskreuz.at> <01d428dd-13f5-5637-9778-e998d3bc8c29@msapiro.net> Message-ID: <759f4ece-e19f-da33-8f45-355698f33f21@msapiro.net> On 03/01/2017 11:49 PM, Berlakovich Felix (OeRK-W) wrote: > > I have tested the last one and it works fine, thanks for the feedback! Should I open a bug on GitHub? That would be helpful. Please do. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan From daniel at brunt.ca Thu Mar 2 22:34:14 2017 From: daniel at brunt.ca (Daniel Brunt) Date: Thu, 2 Mar 2017 22:34:14 +0000 Subject: Mailscanner, forwarding and SPF - the answer is SRS Message-ID: Hi Don, I found an answer to the SPF issue on forwarded emails - SRS. I found the setting at Barracuda in advanced settings. This rewrites the sender envelope info such that the next hop will accept it as it appears to be (in my case) from barracudanetworks.com and GoDaddy is now happy. (envelope-sender .ca=daniel at srs.ess.barracudanetworks.com>) Now what you need is a way to implement SRS in EFA. Note: PostSRSd is not currently part of EFA - that's not to say it cannot be added! See https://github.com/roehling/postsrsd Good luck, -Daniel Also see http://www.openspf.org/SRS > Date: Fri, 24 Feb 2017 18:47:42 +0000 > From: Daniel Brunt > To: "mailscanner at lists.mailscanner.info" > > Subject: RE: Mailscanner, forwarding and SPF > Message-ID: > > > Content-Type: text/plain; charset="us-ascii" > > Hi Don, > > My g/f had similar issue using GoDaddy for her e-mail. I was filtering her e-mail via Barracuda (formerly MailFoundry). I was asked to troubleshoot NDRs. > Turns out, GoDaddy had implemented SPF checking and was rejecting emails forwarded from Barracuda where the domain had a SPF record. > No way around this since GoDaddy was unwilling to whitelist Barracuda mail servers from the SPF check; and their whitelisting mechanism is post-SPF check. > I had to turn off the Barracuda email filtering for her. She was not happy. She started receiving a *lot* more SPAM as a result. > -Daniel From sales at edenusa.com Mon Mar 6 23:05:03 2017 From: sales at edenusa.com (Paul Scott) Date: Mon, 6 Mar 2017 23:05:03 +0000 Subject: About compress file. In-Reply-To: <715ea7af-4949-8407-3167-84403be76124@msapiro.net> References: <715ea7af-4949-8407-3167-84403be76124@msapiro.net> Message-ID: I was wondering what the best and accepted method of restarting mailscanner and sendmail are? Whenever I start mailscanner by itself, or sendmail by itself, the scanning system goes haywire, and I have to restart the system in order to get everything working again. Thank you very much! Sincerely, Paul Scott, Engineer Eden USA, Incorporated Event Production Services Since 1995 Los Angeles-Las Vegas-New York sales at edenusa.com?OR?edenusasales at gmail.com Telephone(s): 866.501.3336 OR 951.505.6967 Fax: 866.502.3336? WEBSITE: https://www.edenusa.com FACEBOOK: http://www.facebook.com/edenusainc -----Original Message----- From: MailScanner [mailto:mailscanner-bounces+sales=edenusa.com at lists.mailscanner.info] On Behalf Of Mark Sapiro Sent: Friday, February 24, 2017 9:55 PM To: mailscanner at lists.mailscanner.info Subject: Re: About compress file. On 02/24/2017 09:37 PM, ??? wrote: > I compress a execution file. like abc.exe > abc.zip or any compress > (rar gz 7z gzip bzip) > > I want abc.zip can be passed but deny abc.exe . With any MailScanner since 4.76.1 this should be the default behavior. .zip, .gz, .tgz, .Z and .bz2 are all allowed by default. .rar is neither explicitly allowed or denied, but you can always add it to filename.rules.conf. For files inside archives, archives.filename.rules.conf controls and denies .exe by default. For MailScanner prior to 4.76.1 there is no separate archives.filename.rules.conf, but archives should be allowed unless they contain disallowed files. If this is not what you see, please be specific about your MailScanner version and the type of archive and the contents that behave differently. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner From Antony.Stone at mailscanner.open.source.it Tue Mar 7 00:24:55 2017 From: Antony.Stone at mailscanner.open.source.it (Antony Stone) Date: Tue, 7 Mar 2017 01:24:55 +0100 Subject: Restarts [Was: Re: About compress file.] In-Reply-To: References: <715ea7af-4949-8407-3167-84403be76124@msapiro.net> Message-ID: <201703070124.55680.Antony.Stone@mailscanner.open.source.it> On Tuesday 07 March 2017 at 00:05:03, Paul Scott wrote: > I was wondering what the best and accepted method of restarting mailscanner > and sendmail are? How do you start them to begin with? Are you using standard init, or are you using systemd? What are your startup scripts (one for both MailScanner and Sendmail, or two separate scripts)? > Whenever I start mailscanner by itself, or sendmail by itself, the scanning > system goes haywire, Please define "haywire". > and I have to restart the system in order to get everything working again. What do you see when you restart the system - does MailScanner start first, or does Sendmail start first? Antony. -- .evah I serutangis sseltniop tsom eht fo eno eb tsum sihT Please reply to the list; please *don't* CC me. From sales at edenusa.com Mon Mar 13 02:23:47 2017 From: sales at edenusa.com (Paul Scott) Date: Mon, 13 Mar 2017 02:23:47 +0000 Subject: Restarts [Was: Re: About compress file.] In-Reply-To: <201703070124.55680.Antony.Stone@mailscanner.open.source.it> References: <715ea7af-4949-8407-3167-84403be76124@msapiro.net> <201703070124.55680.Antony.Stone@mailscanner.open.source.it> Message-ID: Hello Antony, Thank you very much for your reply. I will have to get in front of the machine (which is 40-miles away, in a server room), in order to get your questions answered. All of this, and many other difficulties, all started with the upgrade to version 5.x of MailScanner. Working with the nice people on this list, and spending a good 25+ hours over a period of a few months, I was able to get back to a fairly good-working system, except for this restart issue. I am going to update my entire mail server to the very latest CentOS version, and just start over eventually, but that won't be until I get better, medically. Thank you again for your answer. Most appreciated. Sincerely, Paul Scott, Engineer Eden USA, Incorporated Event Production Services Since 1995 Los Angeles-Las Vegas-New York sales at edenusa.com?OR?edenusasales at gmail.com Telephone(s): 866.501.3336 OR 951.505.6967 Fax: 866.502.3336? WEBSITE: https://www.edenusa.com FACEBOOK: http://www.facebook.com/edenusainc -----Original Message----- From: MailScanner [mailto:mailscanner-bounces+sales=edenusa.com at lists.mailscanner.info] On Behalf Of Antony Stone Sent: Monday, March 06, 2017 4:25 PM To: MailScanner Discussion Subject: Restarts [Was: Re: About compress file.] On Tuesday 07 March 2017 at 00:05:03, Paul Scott wrote: > I was wondering what the best and accepted method of restarting > mailscanner and sendmail are? How do you start them to begin with? Are you using standard init, or are you using systemd? What are your startup scripts (one for both MailScanner and Sendmail, or two separate scripts)? > Whenever I start mailscanner by itself, or sendmail by itself, the > scanning system goes haywire, Please define "haywire". > and I have to restart the system in order to get everything working again. What do you see when you restart the system - does MailScanner start first, or does Sendmail start first? Antony. -- .evah I serutangis sseltniop tsom eht fo eno eb tsum sihT Please reply to the list; please *don't* CC me. -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner From JoshuaC at ace.com.au Fri Mar 17 02:32:06 2017 From: JoshuaC at ace.com.au (Joshua Cameron) Date: Fri, 17 Mar 2017 02:32:06 +0000 Subject: MailScanner Message-ID: <5bf403e0f4234be79678e4a5281e8449@ace.com.au> Afternoon, We're using MailScanner in our cPanel server. We've recently implemented a dedicated appliance to filter spam at the border, Barracuda for those wondering. Inbound email goes to the Barracuda, then it gets delivered to cPanel. However when being received by cPanel, MailScanner is doing SPF checks and such that are leading the emails to get marked as spam. I've disabled these checks in cPanel's own software, but I'm looking for a way to whitelist an IP from being checked for SPF in MailScanner. Any help would be appreciated, Thanks! Joshua Cameron Software Developer/Systems Administrator Phone: 02 4861 8888 Email: joshuac at ace.com.au [Description: Description: Description: Description: Description: Description: ace_logo] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 3376 bytes Desc: image001.png URL: From alex at vidadigital.com.pa Fri Mar 17 02:43:07 2017 From: alex at vidadigital.com.pa (alex at vidadigital.com.pa) Date: Thu, 16 Mar 2017 21:43:07 -0500 Subject: MailScanner In-Reply-To: <5bf403e0f4234be79678e4a5281e8449@ace.com.au> References: <5bf403e0f4234be79678e4a5281e8449@ace.com.au> Message-ID: MailScanner doesn't do *any* SPF checks at all. It calls SpamAssassin, which does SPF checks. Tell SpamAssassin to *not* run any SPF checks on mail by commenting out the module: #loadplugin Mail::SpamAssassin::Plugin::SPF ... on your /etc/mail/spamassassin/whateverthenameofthefilethathasit.cf You can also completely erradicate the SPF module from your system by doing: rpm -e --nodeps perl-Mail-SPF perl-Mail-SPF-Query ... if for example it's an RPM based distro. Alex Neuman van der Hans Producer/Host, Vida Digital +1 (440) 253-9789 | +507 6781-9505 | Panama |alex at vidadigital.com.pa | http://vidadigital.com.pa/ | Skype:alexneuman | wiseintro.co/alexneuman > On Mar 16, 2017, at 9:32 PM, Joshua Cameron wrote: > > Afternoon, > > We?re using MailScanner in our cPanel server. We?ve recently implemented a dedicated appliance to filter spam at the border, Barracuda for those wondering. > > Inbound email goes to the Barracuda, then it gets delivered to cPanel. > > However when being received by cPanel, MailScanner is doing SPF checks and such that are leading the emails to get marked as spam. > > I?ve disabled these checks in cPanel?s own software, but I?m looking for a way to whitelist an IP from being checked for SPF in MailScanner. > > Any help would be appreciated, > > Thanks! > > Joshua Cameron > Software Developer/Systems Administrator > Phone: 02 4861 8888 > Email: joshuac at ace.com.au > > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark at msapiro.net Fri Mar 17 02:51:21 2017 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 16 Mar 2017 19:51:21 -0700 Subject: MailScanner In-Reply-To: <5bf403e0f4234be79678e4a5281e8449@ace.com.au> References: <5bf403e0f4234be79678e4a5281e8449@ace.com.au> Message-ID: <2b5732cf-6ceb-73fc-7a0c-3c1905a2dca3@msapiro.net> On 03/16/2017 07:32 PM, Joshua Cameron wrote: > > However when being received by cPanel, MailScanner is doing SPF checks > and such that are leading the emails to get marked as spam. > > I?ve disabled these checks in cPanel?s own software, but I?m looking for > a way to whitelist an IP from being checked for SPF in MailScanner. As far as I know, the only MailScanner SPF checks are in SpamAssassin. To disable a SpamAssassin rule, put score RULE_NAME 0 in /etc/MailScanner/spamassassin.conf (that's the normal path to this file - where it is in cPanel may be different). RULE_NAME is whatever is hitting and raising the score. Probably things like SPF_FAIL, SPF_NEUTRAL and SPF_SOFTFAIL. There may also be files in /etc/spamassassin. Normally /etc/spamassassin/mailscanner.cf is a symlink to /etc/MailScanner/spamassassin.conf, but there is also a local.cf and you could put your scores there or even in your own .cf file in that directory. Those .cf files are loaded in alphanumeric order and later settings override earlier ones. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan From mark at msapiro.net Fri Mar 17 02:57:22 2017 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 16 Mar 2017 19:57:22 -0700 Subject: {Spam?} Re: MailScanner In-Reply-To: References: <5bf403e0f4234be79678e4a5281e8449@ace.com.au> Message-ID: <7e858a44-fe5f-81f7-e420-77a58561fa24@msapiro.net> On 03/16/2017 07:43 PM, alex at vidadigital.com.pa wrote: > > Tell SpamAssassin to *not* run any SPF checks on mail by commenting out > the module: > > |#loadplugin Mail::SpamAssassin::Plugin::SPF| > > ... on your /etc/mail/spamassassin/whateverthenameofthefilethathasit.cf Actually, that's probably a .pre file, not a .cf -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan From alex at vidadigital.com.pa Fri Mar 17 03:06:12 2017 From: alex at vidadigital.com.pa (alex at vidadigital.com.pa) Date: Thu, 16 Mar 2017 22:06:12 -0500 Subject: {Spam?} Re: MailScanner In-Reply-To: <7e858a44-fe5f-81f7-e420-77a58561fa24@msapiro.net> References: <5bf403e0f4234be79678e4a5281e8449@ace.com.au> <7e858a44-fe5f-81f7-e420-77a58561fa24@msapiro.net> Message-ID: <8E887E02-7644-49B4-9070-03940452A812@vidadigital.com.pa> That is correct! Alex Neuman van der Hans Producer/Host, Vida Digital +1 (440) 253-9789 | +507 6781-9505 | Panama |alex at vidadigital.com.pa | http://vidadigital.com.pa/ | Skype:alexneuman | wiseintro.co/alexneuman > On Mar 16, 2017, at 9:57 PM, Mark Sapiro wrote: > > Actually, that's probably a .pre file, not a .cf -------------- next part -------------- An HTML attachment was scrubbed... URL: From z3us.linux at gmail.com Wed Mar 22 19:48:58 2017 From: z3us.linux at gmail.com (Z3us Linux) Date: Wed, 22 Mar 2017 20:48:58 +0100 Subject: Problem showing top viruses - Sophos detections not showing Message-ID: Hi guys, I'm running the latest version of Mailscanner and Mailwatch with postfix on CentOS 6.8. I'm only using F-Secure and Sophos AV with MailScanner. The problem is that when I open the Top Viruses page (rep_top_viruses.php), it's only showing the Sophos detected viruses, not the other ones. When I look into the mailscanner SQL database, I see plenty of entries in the maillog with detected viruses, also from Sophos. Any idea what's going on here? Thanks in advance! z3us. -------------- next part -------------- An HTML attachment was scrubbed... URL: From alipasijaner at outlook.com Fri Mar 24 15:46:15 2017 From: alipasijaner at outlook.com (Alipasijaner Sarajevski) Date: Fri, 24 Mar 2017 15:46:15 +0000 Subject: opensuse leap 42.2 - help mailscanner instalation Message-ID: Hello friends, I need help. I would like to install mailscanner on opensuse leap 42.2 with sendmail, I'm stuck in installation with sendmail -bd -OPrivacyOptions=noetrn -ODeliveryMode=queueonly -OQueueDirectory=/var/spool/mqueue.in sendmail -q15m where to change this two lines because os 42.2 leap don't have /etc/init.d/mail or /etc/rc.d/init.d/sendmail scripts Sent from Mail for Windows 10 -------------- next part -------------- An HTML attachment was scrubbed... URL: From pndiku at gmail.com Fri Mar 24 18:26:35 2017 From: pndiku at gmail.com (Peter C. Ndikuwera) Date: Fri, 24 Mar 2017 21:26:35 +0300 Subject: opensuse leap 42.2 - help mailscanner instalation In-Reply-To: References: Message-ID: Hi, openSUSE LEAP uses systemd so you need to look at /usr/lib/systemd/system/sendmail.service Unfortunately I haven't used sendmail in a decade so can't help you much beyond that. P. -- At that time people began... On 24 March 2017 at 18:46, Alipasijaner Sarajevski wrote: > Hello friends, > > > > I need help. I would like to install mailscanner on opensuse leap 42.2 > with sendmail, > > I'm stuck in installation with > > > > sendmail -bd -OPrivacyOptions=noetrn -ODeliveryMode=queueonly > -OQueueDirectory=/var/spool/mqueue.in > > sendmail -q15m > > > > where to change this two lines because os 42.2 leap don't have > /etc/init.d/mail or /etc/rc.d/init.d/sendmail scripts > > > > Sent from Mail for > Windows 10 > > > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonas at jkvinge.net Fri Mar 24 19:58:22 2017 From: jonas at jkvinge.net (Jonas Kvinge) Date: Fri, 24 Mar 2017 20:58:22 +0100 Subject: opensuse leap 42.2 - help mailscanner instalation In-Reply-To: References: Message-ID: You need to modify the systemd files. Copy /usr/lib/systemd/system/sendmail.service to /etc/systemd/system/sendmail.service Edit /etc/systemd/system/sendmail.service and change the line for Environment under Service to: Environment="SENDMAIL_ARGS=-L sendmail -Am -bd -q30m -om -OPrivacyOptions=noetrn -ODeliveryMode=queueonly -OQueueDirectory=/var/spool/mqueue.in" I see that I have also added the following line under Unit before After: Wants=amavis.service cyrus.service ldap.service nscd.service ypbind.service saslauthd.service I don't remember why I did this. I see I also got a symbolic link from mail-transfer-agent.target to /usr/lib/systemd/system/sendmail.service in /etc/systemd/system/ The key thing is to not change anything in /usr/lib/systemd/system, but copy the file to /etc/systemd/system/ I have also created some systemd files in /etc/systemd/system/ to start some sendmail milters. Hope this helps. Jonas On 03/24/2017 04:46 PM, Alipasijaner Sarajevski wrote: > > Hello friends, > > > > I need help. I would like to install mailscanner on opensuse leap 42.2 > with sendmail, > > I'm stuck in installation with > > > > sendmail -bd -OPrivacyOptions=noetrn -ODeliveryMode=queueonly > -OQueueDirectory=/var/spool/mqueue.in > > sendmail -q15m > > > > where to change this two lines because os 42.2 leap don't have > /etc/init.d/mail or /etc/rc.d/init.d/sendmail scripts > > > > Sent from Mail for > Windows 10 > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wt at dld2000.com Sat Mar 25 11:38:20 2017 From: wt at dld2000.com (Walt Thiessen) Date: Sat, 25 Mar 2017 07:38:20 -0400 Subject: MailScanner blocking ClamAV emails In-Reply-To: References: Message-ID: I have MailScanner set to check all inbound and outbound email using ClamAV. I have ClamAV set up to send me an email each day informing me of any possible infections. For about a week or two now, this email has failed to arrive. My admins found the problem. ClamAV is apparently blocking itself via MailScanner. From the maillog: [root at server ~]# grep 1cqtVW-0002rF-UX /var/log/maillog Mar 22 23:33:50 server MailScanner: Filename Checks: Allowing 1cqtVW-0002rF-UX clamav-2017-03-22.log (no rule matched) Mar 22 23:33:51 server MailScanner: Filetype Checks: Allowing 1cqtVW-0002rF-UX clamav-2017-03-22.log Mar 22 23:33:51 server MailScanner: Clamd::INFECTED:: YARA.r57shell_php_php.UNOFFICIAL :: ./1cqtVW-0002rF-UX/clamav-2017-03-22.log Mar 22 23:33:51 server MailScanner: Infected message 1cqtVW-0002rF-UX came from 127.0.0.1 Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: Received for MailControl Database Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: MailControl cannot insert row: %%C7RPN1O2FYP5LGSYVTBFOC2X10OGEDRXXIPRGRGJJJI5KDWFI8S We tried whitelisting root at server or 127.0.0.1, but it didn't help. Any ideas? Walt From jerry.benton at mailborder.com Sat Mar 25 11:40:46 2017 From: jerry.benton at mailborder.com (Jerry Benton) Date: Sat, 25 Mar 2017 07:40:46 -0400 Subject: MailScanner blocking ClamAV emails In-Reply-To: References: Message-ID: <5CE5EE75-D3E0-4E9E-BCC4-3B7125BCC0D4@mailborder.com> Whitelisting in MailScanner. Whitelisting is for spam checks. You will need to whitelist in clamav. It looks like a Sane rule is catching it? - Jerry Benton www.mailborder.com +1 - 844-436-6245 > On Mar 25, 2017, at 7:38 AM, Walt Thiessen wrote: > > I have MailScanner set to check all inbound and outbound email using ClamAV. > > I have ClamAV set up to send me an email each day informing me of any possible infections. > > For about a week or two now, this email has failed to arrive. > > My admins found the problem. ClamAV is apparently blocking itself via MailScanner. > > From the maillog: > > [root at server ~]# grep 1cqtVW-0002rF-UX /var/log/maillog > Mar 22 23:33:50 server MailScanner: Filename Checks: Allowing 1cqtVW-0002rF-UX clamav-2017-03-22.log (no rule matched) > Mar 22 23:33:51 server MailScanner: Filetype Checks: Allowing 1cqtVW-0002rF-UX clamav-2017-03-22.log > Mar 22 23:33:51 server MailScanner: Clamd::INFECTED:: YARA.r57shell_php_php.UNOFFICIAL :: ./1cqtVW-0002rF-UX/clamav-2017-03-22.log > Mar 22 23:33:51 server MailScanner: Infected message 1cqtVW-0002rF-UX came from 127.0.0.1 > Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: Received for MailControl Database > Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: MailControl cannot insert row: %%C7RPN1O2FYP5LGSYVTBFOC2X10OGEDRXXIPRGRGJJJI5KDWFI8S > > We tried whitelisting root at server or 127.0.0.1, but it didn't help. > > Any ideas? > > Walt > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wt at dld2000.com Sat Mar 25 11:45:07 2017 From: wt at dld2000.com (Walt Thiessen) Date: Sat, 25 Mar 2017 07:45:07 -0400 Subject: MailScanner blocking ClamAV emails In-Reply-To: <5CE5EE75-D3E0-4E9E-BCC4-3B7125BCC0D4@mailborder.com> References: <5CE5EE75-D3E0-4E9E-BCC4-3B7125BCC0D4@mailborder.com> Message-ID: I'm not sure what a Sane rule is. On 3/25/2017 7:40 AM, Jerry Benton wrote: > Whitelisting in MailScanner. Whitelisting is for spam checks. You will > need to whitelist in clamav. It looks like a Sane rule is catching it? > > - > Jerry Benton > www.mailborder.com > +1 - 844-436-6245 > > > >> On Mar 25, 2017, at 7:38 AM, Walt Thiessen > > wrote: >> >> I have MailScanner set to check all inbound and outbound email using >> ClamAV. >> >> I have ClamAV set up to send me an email each day informing me of any >> possible infections. >> >> For about a week or two now, this email has failed to arrive. >> >> My admins found the problem. ClamAV is apparently blocking itself via >> MailScanner. >> >> From the maillog: >> >> [root at server ~]# grep 1cqtVW-0002rF-UX /var/log/maillog >> Mar 22 23:33:50 server MailScanner: Filename Checks: Allowing >> 1cqtVW-0002rF-UX clamav-2017-03-22.log (no rule matched) >> Mar 22 23:33:51 server MailScanner: Filetype Checks: Allowing >> 1cqtVW-0002rF-UX clamav-2017-03-22.log >> Mar 22 23:33:51 server MailScanner: Clamd::INFECTED:: >> YARA.r57shell_php_php.UNOFFICIAL :: >> ./1cqtVW-0002rF-UX/clamav-2017-03-22.log >> Mar 22 23:33:51 server MailScanner: Infected message 1cqtVW-0002rF-UX >> came from 127.0.0.1 >> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: Received for >> MailControl Database >> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: MailControl >> cannot insert row: %%C7RPN1O2FYP5LGSYVTBFOC2X10OGEDRXXIPRGRGJJJI5KDWFI8S >> >> We tried whitelisting root at server or 127.0.0.1, but it didn't help. >> >> Any ideas? >> >> Walt >> >> >> -- >> MailScanner mailing list >> mailscanner at lists.mailscanner.info >> >> http://lists.mailscanner.info/mailman/listinfo/mailscanner >> > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jerry.benton at mailborder.com Sat Mar 25 11:46:40 2017 From: jerry.benton at mailborder.com (Jerry Benton) Date: Sat, 25 Mar 2017 07:46:40 -0400 Subject: MailScanner blocking ClamAV emails In-Reply-To: References: <5CE5EE75-D3E0-4E9E-BCC4-3B7125BCC0D4@mailborder.com> Message-ID: <1169BA6C-F424-470A-BB53-E8E732F44169@mailborder.com> Sane Security: http://sanesecurity.com/usage/signatures/ Did you add those rules to freshclam.conf ? Regardless, you need to whitelist at the clam level, not MailScanner. - Jerry Benton www.mailborder.com +1 - 844-436-6245 > On Mar 25, 2017, at 7:45 AM, Walt Thiessen wrote: > > I'm not sure what a Sane rule is. > > On 3/25/2017 7:40 AM, Jerry Benton wrote: >> Whitelisting in MailScanner. Whitelisting is for spam checks. You will need to whitelist in clamav. It looks like a Sane rule is catching it? >> >> - >> Jerry Benton >> www.mailborder.com >> +1 - 844-436-6245 >> >> >> >>> On Mar 25, 2017, at 7:38 AM, Walt Thiessen > wrote: >>> >>> I have MailScanner set to check all inbound and outbound email using ClamAV. >>> >>> I have ClamAV set up to send me an email each day informing me of any possible infections. >>> >>> For about a week or two now, this email has failed to arrive. >>> >>> My admins found the problem. ClamAV is apparently blocking itself via MailScanner. >>> >>> From the maillog: >>> >>> [root at server ~]# grep 1cqtVW-0002rF-UX /var/log/maillog >>> Mar 22 23:33:50 server MailScanner: Filename Checks: Allowing 1cqtVW-0002rF-UX clamav-2017-03-22.log (no rule matched) >>> Mar 22 23:33:51 server MailScanner: Filetype Checks: Allowing 1cqtVW-0002rF-UX clamav-2017-03-22.log >>> Mar 22 23:33:51 server MailScanner: Clamd::INFECTED:: YARA.r57shell_php_php.UNOFFICIAL :: ./1cqtVW-0002rF-UX/clamav-2017-03-22.log >>> Mar 22 23:33:51 server MailScanner: Infected message 1cqtVW-0002rF-UX came from 127.0.0.1 >>> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: Received for MailControl Database >>> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: MailControl cannot insert row: %%C7RPN1O2FYP5LGSYVTBFOC2X10OGEDRXXIPRGRGJJJI5KDWFI8S >>> >>> We tried whitelisting root at server or 127.0.0.1, but it didn't help. >>> >>> Any ideas? >>> >>> Walt >>> >>> >>> -- >>> MailScanner mailing list >>> mailscanner at lists.mailscanner.info >>> http://lists.mailscanner.info/mailman/listinfo/mailscanner >>> >> >> >> >> > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wt at dld2000.com Sat Mar 25 15:50:34 2017 From: wt at dld2000.com (Walt Thiessen) Date: Sat, 25 Mar 2017 11:50:34 -0400 Subject: MailScanner blocking ClamAV emails In-Reply-To: <1169BA6C-F424-470A-BB53-E8E732F44169@mailborder.com> References: <5CE5EE75-D3E0-4E9E-BCC4-3B7125BCC0D4@mailborder.com> <1169BA6C-F424-470A-BB53-E8E732F44169@mailborder.com> Message-ID: <1fd17b26-da65-5dfe-6128-7ffd875dd96b@dld2000.com> What exactly should we whitelist? My admins claim that the only thing you can whitelist in ClamAV is a signature, and they say there are no signatures in the log entries to whitelist. On 3/25/2017 7:46 AM, Jerry Benton wrote: > Sane Security: http://sanesecurity.com/usage/signatures/ > > Did you add those rules to freshclam.conf ? > > Regardless, you need to whitelist at the clam level, not MailScanner. > > - > Jerry Benton > www.mailborder.com > +1 - 844-436-6245 > > > >> On Mar 25, 2017, at 7:45 AM, Walt Thiessen > > wrote: >> >> I'm not sure what a Sane rule is. >> >> >> On 3/25/2017 7:40 AM, Jerry Benton wrote: >>> Whitelisting in MailScanner. Whitelisting is for spam checks. You >>> will need to whitelist in clamav. It looks like a Sane rule is >>> catching it? >>> >>> - >>> Jerry Benton >>> www.mailborder.com >>> +1 - 844-436-6245 >>> >>> >>> >>>> On Mar 25, 2017, at 7:38 AM, Walt Thiessen >>> > wrote: >>>> >>>> I have MailScanner set to check all inbound and outbound email >>>> using ClamAV. >>>> >>>> I have ClamAV set up to send me an email each day informing me of >>>> any possible infections. >>>> >>>> For about a week or two now, this email has failed to arrive. >>>> >>>> My admins found the problem. ClamAV is apparently blocking itself >>>> via MailScanner. >>>> >>>> From the maillog: >>>> >>>> [root at server ~]# grep 1cqtVW-0002rF-UX /var/log/maillog >>>> Mar 22 23:33:50 server MailScanner: Filename Checks: Allowing >>>> 1cqtVW-0002rF-UX clamav-2017-03-22.log (no rule matched) >>>> Mar 22 23:33:51 server MailScanner: Filetype Checks: Allowing >>>> 1cqtVW-0002rF-UX clamav-2017-03-22.log >>>> Mar 22 23:33:51 server MailScanner: Clamd::INFECTED:: >>>> YARA.r57shell_php_php.UNOFFICIAL :: >>>> ./1cqtVW-0002rF-UX/clamav-2017-03-22.log >>>> Mar 22 23:33:51 server MailScanner: Infected message >>>> 1cqtVW-0002rF-UX came from 127.0.0.1 >>>> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: Received for >>>> MailControl Database >>>> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: MailControl >>>> cannot insert row: >>>> %%C7RPN1O2FYP5LGSYVTBFOC2X10OGEDRXXIPRGRGJJJI5KDWFI8S >>>> >>>> We tried whitelisting root at server or 127.0.0.1, but it didn't help. >>>> >>>> Any ideas? >>>> >>>> Walt >>>> >>>> >>>> -- >>>> MailScanner mailing list >>>> mailscanner at lists.mailscanner.info >>>> >>>> http://lists.mailscanner.info/mailman/listinfo/mailscanner >>>> >>> >>> >>> >> >> >> >> -- >> MailScanner mailing list >> mailscanner at lists.mailscanner.info >> >> http://lists.mailscanner.info/mailman/listinfo/mailscanner >> > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Antony.Stone at mailscanner.open.source.it Sat Mar 25 16:00:56 2017 From: Antony.Stone at mailscanner.open.source.it (Antony Stone) Date: Sat, 25 Mar 2017 17:00:56 +0100 Subject: MailScanner blocking ClamAV emails In-Reply-To: <1fd17b26-da65-5dfe-6128-7ffd875dd96b@dld2000.com> References: <1169BA6C-F424-470A-BB53-E8E732F44169@mailborder.com> <1fd17b26-da65-5dfe-6128-7ffd875dd96b@dld2000.com> Message-ID: <201703251700.56240.Antony.Stone@mailscanner.open.source.it> On Saturday 25 March 2017 at 16:50:34, Walt Thiessen wrote: > What exactly should we whitelist? My admins claim that the only thing > you can whitelist in ClamAV is a signature, and they say there are no > signatures in the log entries to whitelist. I would suggest you want to whitelist emails from 127.0.0.1. After all, your objective is to scan & filter "inbound" emails and "outbound" emails, and I'd say that emails from 127.0.0.1 on the email host itself don't count as either. Antony. > On 3/25/2017 7:46 AM, Jerry Benton wrote: > > Sane Security: http://sanesecurity.com/usage/signatures/ > > > > Did you add those rules to freshclam.conf ? > > > > Regardless, you need to whitelist at the clam level, not MailScanner. > > > > - > > Jerry Benton > > www.mailborder.com > > +1 - 844-436-6245 > > > >> On Mar 25, 2017, at 7:45 AM, Walt Thiessen >> > wrote: > >> > >> I'm not sure what a Sane rule is. > >> > >> On 3/25/2017 7:40 AM, Jerry Benton wrote: > >>> Whitelisting in MailScanner. Whitelisting is for spam checks. You > >>> will need to whitelist in clamav. It looks like a Sane rule is > >>> catching it? > >>> > >>> - > >>> Jerry Benton > >>> www.mailborder.com > >>> +1 - 844-436-6245 > >>> > >>>> On Mar 25, 2017, at 7:38 AM, Walt Thiessen >>>> > wrote: > >>>> > >>>> I have MailScanner set to check all inbound and outbound email > >>>> using ClamAV. > >>>> > >>>> I have ClamAV set up to send me an email each day informing me of > >>>> any possible infections. > >>>> > >>>> For about a week or two now, this email has failed to arrive. > >>>> > >>>> My admins found the problem. ClamAV is apparently blocking itself > >>>> via MailScanner. > >>>> > >>>> From the maillog: > >>>> > >>>> [root at server ~]# grep 1cqtVW-0002rF-UX /var/log/maillog > >>>> Mar 22 23:33:50 server MailScanner: Filename Checks: Allowing > >>>> 1cqtVW-0002rF-UX clamav-2017-03-22.log (no rule matched) > >>>> Mar 22 23:33:51 server MailScanner: Filetype Checks: Allowing > >>>> 1cqtVW-0002rF-UX clamav-2017-03-22.log > >>>> Mar 22 23:33:51 server MailScanner: Clamd::INFECTED:: > >>>> YARA.r57shell_php_php.UNOFFICIAL :: > >>>> ./1cqtVW-0002rF-UX/clamav-2017-03-22.log > >>>> Mar 22 23:33:51 server MailScanner: Infected message > >>>> 1cqtVW-0002rF-UX came from 127.0.0.1 > >>>> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: Received for > >>>> MailControl Database > >>>> Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: MailControl > >>>> cannot insert row: > >>>> %%C7RPN1O2FYP5LGSYVTBFOC2X10OGEDRXXIPRGRGJJJI5KDWFI8S > >>>> > >>>> We tried whitelisting root at server or 127.0.0.1, but it didn't help. > >>>> > >>>> Any ideas? > >>>> > >>>> Walt -- Perfection in design is achieved not when there is nothing left to add, but rather when there is nothing left to take away. - Antoine de Saint-Exupery Please reply to the list; please *don't* CC me. From mark at msapiro.net Sat Mar 25 16:04:25 2017 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 25 Mar 2017 09:04:25 -0700 Subject: MailScanner blocking ClamAV emails In-Reply-To: <1fd17b26-da65-5dfe-6128-7ffd875dd96b@dld2000.com> References: <5CE5EE75-D3E0-4E9E-BCC4-3B7125BCC0D4@mailborder.com> <1169BA6C-F424-470A-BB53-E8E732F44169@mailborder.com> <1fd17b26-da65-5dfe-6128-7ffd875dd96b@dld2000.com> Message-ID: <6c39d60e-9663-36e3-e50e-fb4e5360d651@msapiro.net> On 03/25/2017 08:50 AM, Walt Thiessen wrote: > What exactly should we whitelist? My admins claim that the only thing > you can whitelist in ClamAV is a signature, and they say there are no > signatures in the log entries to whitelist. The rule that hits is YARA.r57shell_php_php.UNOFFICIAL. The .UNOFFICIAL part just means it is not an 'official' clamav rule, and I'm not sure but I think the YARA. part just indicates its a YARA rule, but the rest of it should match some rule in a file in /var/lib/clamav, probably with a .yar or .yara extension. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan From email at ace.net.au Sat Mar 25 17:17:16 2017 From: email at ace.net.au (Peter) Date: Sun, 26 Mar 2017 03:47:16 +1030 Subject: MailScanner blocking ClamAV emails In-Reply-To: References: Message-ID: <201703260347160410.1037D4C6@web.ace.net.au> Edit MailScanner.conf, change: Virus Scanning = yes to Virus Scanning = %rules-dir%/virus.whitelist.rules The in your rule directory create a file called virus.whitelist.rules which uses the same syntax as spam.whitelist.rules - eg: From: clamav at yourdomain.com and To: you at yourdomain.com no Don't forget to have the last line as: FromOrTo default yes The Yes/No refers to whether it is virus scanned. Problem solved! Cheers, Peter *********** REPLY SEPARATOR *********** On 25/03/2017 at 7:38 AM Walt Thiessen wrote: >I have MailScanner set to check all inbound and outbound email using >ClamAV. > >I have ClamAV set up to send me an email each day informing me of any >possible infections. > >For about a week or two now, this email has failed to arrive. > >My admins found the problem. ClamAV is apparently blocking itself via >MailScanner. > > From the maillog: > >[root at server ~]# grep 1cqtVW-0002rF-UX /var/log/maillog >Mar 22 23:33:50 server MailScanner: Filename Checks: Allowing >1cqtVW-0002rF-UX clamav-2017-03-22.log (no rule matched) >Mar 22 23:33:51 server MailScanner: Filetype Checks: Allowing >1cqtVW-0002rF-UX clamav-2017-03-22.log >Mar 22 23:33:51 server MailScanner: Clamd::INFECTED:: >YARA.r57shell_php_php.UNOFFICIAL :: >./1cqtVW-0002rF-UX/clamav-2017-03-22.log >Mar 22 23:33:51 server MailScanner: Infected message 1cqtVW-0002rF-UX >came from 127.0.0.1 >Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: Received for >MailControl Database >Mar 22 23:33:51 server MailScanner: 1cqtVW-0002rF-UX: MailControl cannot >insert row: %%C7RPN1O2FYP5LGSYVTBFOC2X10OGEDRXXIPRGRGJJJI5KDWFI8S > >We tried whitelisting root at server or 127.0.0.1, but it didn't help. > >Any ideas? > >Walt > > >-- >MailScanner mailing list >mailscanner at lists.mailscanner.info >http://lists.mailscanner.info/mailman/listinfo/mailscanner From steveb_clamav at sanesecurity.com Sat Mar 25 17:47:40 2017 From: steveb_clamav at sanesecurity.com (Steve Basford) Date: Sat, 25 Mar 2017 17:47:40 +0000 Subject: MailScanner blocking ClamAV emails In-Reply-To: <6c39d60e-9663-36e3-e50e-fb4e5360d651@msapiro.net> References: <5CE5EE75-D3E0-4E9E-BCC4-3B7125BCC0D4@mailborder.com> <1169BA6C-F424-470A-BB53-E8E732F44169@mailborder.com> <1fd17b26-da65-5dfe-6128-7ffd875dd96b@dld2000.com> <6c39d60e-9663-36e3-e50e-fb4e5360d651@msapiro.net> Message-ID: <15b0694b260.27d5.3eaa884a23ece66aada06ae82ee56aba@sanesecurity.com> YARA.r57shell_php_php.UNOFFICIAL these Yara rules can be disabled in the official down load script... see config file... or you can put YARA.r57shell_php_php into localwhitelist.ign2 and place in ClamAV database folder to whitelist this Sig. The usual issue with emailing auto-spam logs is they contain snippets of real spam phrases so they will sometimes get hit. Hope that helps. Cheers, Steve Twitter: @sanesecurity On 25 March 2017 16:05:18 Mark Sapiro wrote: > On 03/25/2017 08:50 AM, Walt Thiessen wrote: >> What exactly should we whitelist? My admins claim that the only thing >> you can whitelist in ClamAV is a signature, and they say there are no >> signatures in the log entries to whitelist. > > > > The rule that hits is YARA.r57shell_php_php.UNOFFICIAL. The .UNOFFICIAL > part just means it is not an 'official' clamav rule, and I'm not sure > but I think the YARA. part just indicates its a YARA rule, but the rest > of it should match some rule in a file in /var/lib/clamav, probably with > a .yar or .yara extension. > > -- > Mark Sapiro The highway is for gamblers, > San Francisco Bay Area, California better use your sense - B. Dylan > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > From carles at unlimitedmail.org Mon Mar 27 08:10:58 2017 From: carles at unlimitedmail.org (=?UTF-8?Q?[SOLTECSIS]_Carles_Xavier_Munyoz_Bald=c3=b3?=) Date: Mon, 27 Mar 2017 10:10:58 +0200 Subject: Spamassassin check score customized per mailbox. Message-ID: <0a0563c9-a856-8ed4-3284-a32cdc025ea3@unlimitedmail.org> Hi, Is it possible to customize Spamassassin check score per mailbox? For example, for the mailbox mb1 at example.com: score DCC_CHECK 8.000 and for mb2 at example.com: score DCC_CHECK 4.000 Is it possible? Best regards. ======================================== SOLTECSIS SOLUCIONES TECNOLOGICAS, S.L. Carles Xavier Munyoz Bald? Departamento de I+D+I Tel./Fax: 966 446 046 cmunyoz at soltecsis.com www.soltecsis.com ======================================== --- La informaci?n contenida en este e-mail es confidencial, siendo para uso exclusivo del destinatario arriba mencionado. Le informamos que est? totalmente prohibida cualquier utilizaci?n, divulgaci?n, distribuci?n y/o reproducci?n de esta comunicaci?n sin autorizaci?n expresa en virtud de la legislaci?n vigente. Si ha recibido este mensaje por error, le rogamos nos lo notifique inmediatamente por la misma v?a y proceda a su eliminaci?n. --- From mark at msapiro.net Mon Mar 27 14:31:03 2017 From: mark at msapiro.net (Mark Sapiro) Date: Mon, 27 Mar 2017 07:31:03 -0700 Subject: Spamassassin check score customized per mailbox. In-Reply-To: <0a0563c9-a856-8ed4-3284-a32cdc025ea3@unlimitedmail.org> References: <0a0563c9-a856-8ed4-3284-a32cdc025ea3@unlimitedmail.org> Message-ID: <95950f79-5e74-084d-2765-a5b6631a5075@msapiro.net> On 03/27/2017 01:10 AM, [SOLTECSIS] Carles Xavier Munyoz Bald? wrote: > > Is it possible to customize Spamassassin check score per mailbox? > > For example, for the mailbox mb1 at example.com: > score DCC_CHECK 8.000 > and for mb2 at example.com: > score DCC_CHECK 4.000 If it were possible, it would be in SpamAssassin, not MailScanner, but I don't think it's possible. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan From danita at caledonia.net Mon Mar 27 14:38:51 2017 From: danita at caledonia.net (Danita Zanre) Date: Mon, 27 Mar 2017 16:38:51 +0200 Subject: No logging to SQL again - new error (to me) Message-ID: I have stopped logging to SQL again. ?I did a check of the mail log and I see this: Mar 27 08:22:11 xeams MailScanner[5875]: Could not use Custom Function code MailScanner::CustomConfig::InitSQLBlacklist, it could not be "eval"ed. Make sure the module is correct with perl -wc (Error: DBD::mysql::st execute failed: No database selected at /usr/share/MailScanner/perl/custom/SQLBlackWhiteList.pm line 168. I googled, but I haven?t found a suitable answer yet! ?Where to now? ?Isn?t this supposed to come from the 00MailWatchConf.pm? Thanks Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -------------- next part -------------- An HTML attachment was scrubbed... URL: From jason at geeknocity.com Mon Mar 27 14:44:19 2017 From: jason at geeknocity.com (Jason Waters) Date: Mon, 27 Mar 2017 10:44:19 -0400 Subject: No logging to SQL again - new error (to me) In-Reply-To: References: Message-ID: Are you running the most current version with all the database tweaks? Also what DB are you using? On Mon, Mar 27, 2017 at 10:38 AM, Danita Zanre wrote: > I have stopped logging to SQL again. I did a check of the mail log and I > see this: > > Mar 27 08:22:11 xeams MailScanner[5875]: Could not use Custom Function > code MailScanner::CustomConfig::InitSQLBlacklist, it could not be > "eval"ed. Make sure the module is correct with perl -wc (Error: > DBD::mysql::st execute failed: No database selected at > /usr/share/MailScanner/perl/custom/SQLBlackWhiteList.pm line 168. > > I googled, but I haven?t found a suitable answer yet! Where to now? > Isn?t this supposed to come from the 00MailWatchConf.pm? > > Thanks > > *Danita Zanr?*, *Move Out of the Office* > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Mon Mar 27 14:58:06 2017 From: danita at caledonia.net (Danita Zanre) Date: Mon, 27 Mar 2017 16:58:06 +0200 Subject: No logging to SQL again - new error (to me) In-Reply-To: References: Message-ID: I am running the development version from either Saturday or Sunday. ?Mysql - although I?ve seen that maybe I should switch to maria? ?But I don?t know why it worked until about 2 hours ago and then just stopped. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 27, 2017 at 5:04:31 PM, Jason Waters (jason at geeknocity.com) wrote: Are you running the most current version with all the database tweaks?? Also what DB are you using? On Mon, Mar 27, 2017 at 10:38 AM, Danita Zanre wrote: I have stopped logging to SQL again.? I did a check of the mail log and I see this: Mar 27 08:22:11 xeams MailScanner[5875]: Could not use Custom Function code MailScanner::CustomConfig::InitSQLBlacklist, it could not be "eval"ed. Make sure the module is correct with perl -wc (Error: DBD::mysql::st execute failed: No database selected at /usr/share/MailScanner/perl/custom/SQLBlackWhiteList.pm line 168. I googled, but I haven?t found a suitable answer yet!? Where to now?? Isn?t this supposed to come from the 00MailWatchConf.pm? Thanks Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Mon Mar 27 15:07:14 2017 From: danita at caledonia.net (Danita Zanre) Date: Mon, 27 Mar 2017 17:07:14 +0200 Subject: No logging to SQL again - new error (to me) In-Reply-To: References: Message-ID: I copied everything back to the March 20 version (I think that is considered the ?shipping? code?) and now everything is working again. ?I?m off to a meeting - I?ll see if everything continues to behave, or if I need to go to a developer version again to fix an issue I had this weekend. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 27, 2017 at 5:04:31 PM, Jason Waters (jason at geeknocity.com) wrote: Are you running the most current version with all the database tweaks?? Also what DB are you using? On Mon, Mar 27, 2017 at 10:38 AM, Danita Zanre wrote: I have stopped logging to SQL again.? I did a check of the mail log and I see this: Mar 27 08:22:11 xeams MailScanner[5875]: Could not use Custom Function code MailScanner::CustomConfig::InitSQLBlacklist, it could not be "eval"ed. Make sure the module is correct with perl -wc (Error: DBD::mysql::st execute failed: No database selected at /usr/share/MailScanner/perl/custom/SQLBlackWhiteList.pm line 168. I googled, but I haven?t found a suitable answer yet!? Where to now?? Isn?t this supposed to come from the 00MailWatchConf.pm? Thanks Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -------------- next part -------------- An HTML attachment was scrubbed... URL: From pndiku at gmail.com Tue Mar 28 13:39:59 2017 From: pndiku at gmail.com (Peter C. Ndikuwera) Date: Tue, 28 Mar 2017 16:39:59 +0300 Subject: Spamassassin check score customized per mailbox. In-Reply-To: <95950f79-5e74-084d-2765-a5b6631a5075@msapiro.net> References: <0a0563c9-a856-8ed4-3284-a32cdc025ea3@unlimitedmail.org> <95950f79-5e74-084d-2765-a5b6631a5075@msapiro.net> Message-ID: Hi, With SpamAssassin, I believe it's possible using a user's user_prefs but I'm not sure that MailScanner uses individuals user_prefs when scanning mail. P -- At that time people began... On 27 March 2017 at 17:31, Mark Sapiro wrote: > On 03/27/2017 01:10 AM, [SOLTECSIS] Carles Xavier Munyoz Bald? wrote: > > > > Is it possible to customize Spamassassin check score per mailbox? > > > > For example, for the mailbox mb1 at example.com: > > score DCC_CHECK 8.000 > > and for mb2 at example.com: > > score DCC_CHECK 4.000 > > > If it were possible, it would be in SpamAssassin, not MailScanner, but I > don't think it's possible. > > -- > Mark Sapiro The highway is for gamblers, > San Francisco Bay Area, California better use your sense - B. Dylan > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Tue Mar 28 16:38:18 2017 From: danita at caledonia.net (Danita Zanre) Date: Tue, 28 Mar 2017 18:38:18 +0200 Subject: MariaDB Message-ID: Okay - so I?m not logging to the database again, and I?m thinking MariaDB is next on the list. ?I am running MySQL 5.5.53 on SLES. ?If I understand correctly, I ?should? be able to just download this?https://downloads.mariadb.com/MariaDB/mariadb-5.5.53/yum/sles11-x86/?- uninstall mysql and install it? ?Is that really all? Thanks Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -------------- next part -------------- An HTML attachment was scrubbed... URL: From iversons at rushville.k12.in.us Tue Mar 28 16:41:07 2017 From: iversons at rushville.k12.in.us (Shawn Iverson) Date: Tue, 28 Mar 2017 12:41:07 -0400 Subject: MariaDB In-Reply-To: References: Message-ID: You also need to run this after you get MariaDB installed: mysqlupgrade -u root -p On Tue, Mar 28, 2017 at 12:38 PM, Danita Zanre wrote: > Okay - so I?m not logging to the database again, and I?m thinking MariaDB > is next on the list. I am running MySQL 5.5.53 on SLES. If I understand > correctly, I ?should? be able to just download this https://downloads. > mariadb.com/MariaDB/mariadb-5.5.53/yum/sles11-x86/ - uninstall mysql and > install it? Is that really all? > > Thanks > > *Danita Zanr?*, *Move Out of the Office* > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > -- Shawn Iverson Director of Technology Rush County Schools 765-932-3901 x271 iversons at rushville.k12.in.us -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Tue Mar 28 16:57:21 2017 From: danita at caledonia.net (Danita Zanre) Date: Tue, 28 Mar 2017 18:57:21 +0200 Subject: MariaDB In-Reply-To: References: Message-ID: Alright - well I think this calls for a drink first - hehe - I?ll report back! Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 28, 2017 at 7:05:20 PM, Shawn Iverson (iversons at rushville.k12.in.us) wrote: You also need to run this after you get MariaDB installed: mysqlupgrade -u root -p On Tue, Mar 28, 2017 at 12:38 PM, Danita Zanre wrote: Okay - so I?m not logging to the database again, and I?m thinking MariaDB is next on the list.? I am running MySQL 5.5.53 on SLES.? If I understand correctly, I ?should? be able to just download this?https://downloads.mariadb.com/MariaDB/mariadb-5.5.53/yum/sles11-x86/?- uninstall mysql and install it?? Is that really all? Thanks Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -- Shawn Iverson Director of Technology Rush County Schools 765-932-3901 x271 iversons at rushville.k12.in.us -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Tue Mar 28 21:24:58 2017 From: danita at caledonia.net (Danita Zanre) Date: Tue, 28 Mar 2017 23:24:58 +0200 Subject: MariaDB In-Reply-To: References: Message-ID: I haven?t been able to move to mariadb, because I?m in dependency hades attempting it. ?I?ll try again tomorrow (11:30 PM here). ?I will note something odd though - here are my ?recent? messages. ?I removed the recipient line to protect the info. ?Notice how I have a bunch of mail at 9:15 a.m., and then two AFTER that at 9:07 a.m. ?I.e, these 9:07 messages are out of order. ?Do you think having this oddity is stopping the logging? I just don?t see any errors (as usual). ?It?s just stopped logging and will not come back no matter how much fussing I do! 28/03/17 09:07:01 sci_ed at vwr-news.com 62.146.145.110 Bring on the Butterflies! Order Live Materials for Spring Lessons 23.28kB 0.15 Clean 28/03/17 09:07:01 kresge at bulletinyellow.bid 104.255.99.86 Every Brokerage and Bank Account FROZEN 13.35kB 17.95 Spam 28/03/17 09:15:49 bounce-mc.us1_2062081.3139513- 148.105.12.24 5 Easter preaching tips to bring guests back 23.76kB -1.90 Clean 28/03/17 09:15:49 ether at bulletinyellow.bid 104.255.99.86 Strange Warning Posted at ATMs 13.34kB 17.95 Spam 28/03/17 09:15:49 egyptians at yearlyred.win 185.147.35.25 Now Is the Time to Become a "Marijuana Millionaire" 15.81kB 16.27 Spam 28/03/17 09:15:49 home_chef at home.almeche.us 216.245.223.124 Make Dinner Happen! Quick and Easy. $30 Off Your First Order. 6.2kB 5.97 Spam Thanks Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 28, 2017 at 7:05:20 PM, Shawn Iverson (iversons at rushville.k12.in.us) wrote: You also need to run this after you get MariaDB installed: mysqlupgrade -u root -p On Tue, Mar 28, 2017 at 12:38 PM, Danita Zanre wrote: Okay - so I?m not logging to the database again, and I?m thinking MariaDB is next on the list.? I am running MySQL 5.5.53 on SLES.? If I understand correctly, I ?should? be able to just download this?https://downloads.mariadb.com/MariaDB/mariadb-5.5.53/yum/sles11-x86/?- uninstall mysql and install it?? Is that really all? Thanks Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -- Shawn Iverson Director of Technology Rush County Schools 765-932-3901 x271 iversons at rushville.k12.in.us -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Wed Mar 29 08:53:21 2017 From: danita at caledonia.net (Danita Zanre) Date: Wed, 29 Mar 2017 10:53:21 +0200 Subject: Quarantine reports Message-ID: When I get a quarantine report now, if I click ?view? I?m required to log in, and then I get a message that says ?No input Message ID?. ?Have I missed a setting that allows viewing without logging in perhaps? Thanks. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Wed Mar 29 08:55:29 2017 From: danita at caledonia.net (Danita Zanre) Date: Wed, 29 Mar 2017 10:55:29 +0200 Subject: Quarantine reports In-Reply-To: References: Message-ID: PS - if I?m already logged in, I get the ?No! Bad Dog no treat for you? :-( Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 10:53:21 AM, Danita Zanre (danita at caledonia.net) wrote: When I get a quarantine report now, if I click ?view? I?m required to log in, and then I get a message that says ?No input Message ID?. ?Have I missed a setting that allows viewing without logging in perhaps? Thanks. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Wed Mar 29 09:24:45 2017 From: danita at caledonia.net (Danita Zanre) Date: Wed, 29 Mar 2017 11:24:45 +0200 Subject: Quarantine reports In-Reply-To: References: Message-ID: I found another thread about this and moved back to the development branch (I had gone back to ?shipping? because I was experiencing so many odd issues). ?Now I get ?unable to validate security token?. ?Interestingly enough, I can release mail, I just can?t view it from the quarantine report. ? Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 10:55:29 AM, Danita Zanre (danita at caledonia.net) wrote: PS - if I?m already logged in, I get the ?No! Bad Dog no treat for you? :-( Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 10:53:21 AM, Danita Zanre (danita at caledonia.net) wrote: When I get a quarantine report now, if I click ?view? I?m required to log in, and then I get a message that says ?No input Message ID?. ?Have I missed a setting that allows viewing without logging in perhaps? Thanks. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -------------- next part -------------- An HTML attachment was scrubbed... URL: From iversons at rushville.k12.in.us Wed Mar 29 10:25:16 2017 From: iversons at rushville.k12.in.us (Shawn Iverson) Date: Wed, 29 Mar 2017 06:25:16 -0400 Subject: Quarantine reports In-Reply-To: References: Message-ID: Have you run upgrade.php ? On Wed, Mar 29, 2017 at 5:24 AM, Danita Zanre wrote: > I found another thread about this and moved back to the development branch > (I had gone back to ?shipping? because I was experiencing so many odd > issues). Now I get ?unable to validate security token?. Interestingly > enough, I can release mail, I just can?t view it from the quarantine > report. > > *Danita Zanr?*, *Move Out of the Office* > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > On March 29, 2017 at 10:55:29 AM, Danita Zanre (danita at caledonia.net) > wrote: > > PS - if I?m already logged in, I get the ?No! Bad Dog no treat for you? :-( > > > *Danita Zanr?*, *Move Out of the Office* > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > On March 29, 2017 at 10:53:21 AM, Danita Zanre (danita at caledonia.net) > wrote: > > When I get a quarantine report now, if I click ?view? I?m required to log > in, and then I get a message that says ?No input Message ID?. Have I > missed a setting that allows viewing without logging in perhaps? > > Thanks. > > *Danita Zanr?*, *Move Out of the Office* > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > -- Shawn Iverson Director of Technology Rush County Schools 765-932-3901 x271 iversons at rushville.k12.in.us -------------- next part -------------- An HTML attachment was scrubbed... URL: From pndiku at gmail.com Wed Mar 29 11:12:39 2017 From: pndiku at gmail.com (Peter C. Ndikuwera) Date: Wed, 29 Mar 2017 11:12:39 +0000 Subject: MariaDB In-Reply-To: References: Message-ID: You might be better off using the SUSE provided packages. http://software.opensuse.org/package/mariadb Select "Show other versions", go to SLES and select "Show unstable versions". You'll get a one-click installer. Peter On Wed, 29 Mar 2017, 00:25 Danita Zanre, wrote: > I haven?t been able to move to mariadb, because I?m in dependency hades > attempting it. I?ll try again tomorrow (11:30 PM here). I will note > something odd though - here are my ?recent? messages. I removed the > recipient line to protect the info. Notice how I have a bunch of mail at > 9:15 a.m., and then two AFTER that at 9:07 a.m. I.e, these 9:07 messages > are out of order. Do you think having this oddity is stopping the logging? > I just don?t see any errors (as usual). It?s just stopped logging and will > not come back no matter how much fussing I do! > > > > 28/03/17 > 09:07:01 sci_ed at vwr-news.com 62.146.145.110 > Bring on the Butterflies! Order Live Materials for Spring Lessons 23.28kB > 0.15 Clean > > 28/03/17 > 09:07:01 kresge at bulletinyellow.bid 104.255.99.86 > Every Brokerage and Bank Account FROZEN 13.35kB 17.95 Spam > > 28/03/17 > 09:15:49 bounce-mc.us1_2062081.3139513- 148.105.12.24 > 5 Easter preaching tips to bring guests back 23.76kB -1.90 Clean > > 28/03/17 > 09:15:49 ether at bulletinyellow.bid 104.255.99.86 > Strange Warning Posted at ATMs 13.34kB 17.95 Spam > > 28/03/17 > 09:15:49 egyptians at yearlyred.win 185.147.35.25 > Now Is the Time to Become a "Marijuana Millionaire" 15.81kB 16.27 Spam > > 28/03/17 > 09:15:49 home_chef at home.almeche.us 216.245.223.124 > Make Dinner Happen! Quick and Easy. $30 Off Your First Order. 6.2kB 5.97 > Spam > > Thanks > > *Danita Zanr?*, *Move Out of the Office* > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > On March 28, 2017 at 7:05:20 PM, Shawn Iverson ( > iversons at rushville.k12.in.us) wrote: > > You also need to run this after you get MariaDB installed: > > mysqlupgrade -u root -p > > On Tue, Mar 28, 2017 at 12:38 PM, Danita Zanre > wrote: > > Okay - so I?m not logging to the database again, and I?m thinking MariaDB > is next on the list. I am running MySQL 5.5.53 on SLES. If I understand > correctly, I ?should? be able to just download this > https://downloads.mariadb.com/MariaDB/mariadb-5.5.53/yum/sles11-x86/ - > uninstall mysql and install it? Is that really all? > > Thanks > > *Danita Zanr?*, *Move Out of the Office* > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > > > > -- > Shawn Iverson > Director of Technology > Rush County Schools > 765-932-3901 x271 > iversons at rushville.k12.in.us > > > > -- > This message has been scanned for viruses and > dangerous content by *Iris MailScanner* , and > is > believed to be clean. > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Wed Mar 29 11:20:34 2017 From: danita at caledonia.net (Danita Zanre) Date: Wed, 29 Mar 2017 05:20:34 -0600 Subject: Quarantine reports References: <58DB9ACB0200005B000D50F4@mail.caledonia.net> Message-ID: <58DB9ACB0200005B000D50F4@mail.caledonia.net> Hi Shawn, Yes. Twice. One when I first move to shipping, and then when I first moved to development. But not in any of the in-between moves. I'll try that again. Thanks, -Danita ---------------------------------- Danita Zanr? Tel: (720)319-8240 - Move Out of the Office Tel: (720)319-7530 - Caledonia ---------------------------------- On 29 mar 2017 at 12:25:16 CEST, Shawn Iverson wrote: Have you run upgrade.php ? On Wed, Mar 29, 2017 at 5:24 AM, Danita Zanre wrote: > I found another thread about this and moved back to the development branch (I had gone back to ?shipping? because I was experiencing so many odd issues). Now I get ?unable to validate security token?. Interestingly enough, I can release mail, I just can?t view it from the quarantine report. > > Danita Zanr?, Move Out of the Office > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > On March 29, 2017 at 10:55:29 AM, Danita Zanre (danita at caledonia.net) wrote: > >> PS - if I?m already logged in, I get the ?No! Bad Dog no treat for you? :-( >> >> >> Danita Zanr?, Move Out of the Office >> I love my job, and you can too! >> Tel: (720) 319-7530 - Caledonia.Net LLC >> Tel: (720) 319-8240 - Move Out of the Office >> >> >> On March 29, 2017 at 10:53:21 AM, Danita Zanre (danita at caledonia.net) wrote: >> >>> When I get a quarantine report now, if I click ?view? I?m required to log in, and then I get a message that says ?No input Message ID?. Have I missed a setting that allows viewing without logging in perhaps? >>> >>> Thanks. >>> >>> Danita Zanr?, Move Out of the Office >>> I love my job, and you can too! >>> Tel: (720) 319-7530 - Caledonia.Net LLC >>> Tel: (720) 319-8240 - Move Out of the Office >>> > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > -- Shawn Iverson Director of Technology Rush County Schools 765-932-3901 x271 iversons at rushville.k12.in.us -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. Danita Zanre, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia Network Consulting Tel: (720) 319-8240 - Move Out of the Office danita at caledonia.net | www.moveoutoftheoffice.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From jerry.benton at mailborder.com Wed Mar 29 11:22:08 2017 From: jerry.benton at mailborder.com (Jerry Benton) Date: Wed, 29 Mar 2017 07:22:08 -0400 Subject: Quarantine reports In-Reply-To: <58DB9ACB0200005B000D50F4@mail.caledonia.net> References: <58DB9ACB0200005B000D50F4@mail.caledonia.net> <58DB9ACB0200005B000D50F4@mail.caledonia.net> Message-ID: Do I need to say the obvious here? - Jerry Benton www.mailborder.com +1 - 844-436-6245 > On Mar 29, 2017, at 7:20 AM, Danita Zanre wrote: > > Hi Shawn, > > Yes. Twice. One when I first move to shipping, and then when I first moved to development. But not in any of the in-between moves. I'll try that again. > > Thanks, > > -Danita > > ---------------------------------- > Danita Zanr? > Tel: (720)319-8240 - Move Out of the Office > Tel: (720)319-7530 - Caledonia > > ---------------------------------- > > > On 29 mar 2017 at 12:25:16 CEST, Shawn Iverson > wrote: > > Have you run upgrade.php ? > > > > On Wed, Mar 29, 2017 at 5:24 AM, Danita Zanre > wrote: > I found another thread about this and moved back to the development branch (I had gone back to ?shipping? because I was experiencing so many odd issues). Now I get ?unable to validate security token?. Interestingly enough, I can release mail, I just can?t view it from the quarantine report. > > Danita Zanr?, Move Out of the Office > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia.Net LLC > Tel: (720) 319-8240 - Move Out of the Office > > > On March 29, 2017 at 10:55:29 AM, Danita Zanre (danita at caledonia.net ) wrote: > >> PS - if I?m already logged in, I get the ?No! Bad Dog no treat for you? :-( >> >> >> Danita Zanr?, Move Out of the Office >> I love my job, and you can too! >> Tel: (720) 319-7530 - Caledonia.Net LLC >> Tel: (720) 319-8240 - Move Out of the Office >> >> >> On March 29, 2017 at 10:53:21 AM, Danita Zanre (danita at caledonia.net ) wrote: >> >>> When I get a quarantine report now, if I click ?view? I?m required to log in, and then I get a message that says ?No input Message ID?. Have I missed a setting that allows viewing without logging in perhaps? >>> >>> Thanks. >>> >>> Danita Zanr?, Move Out of the Office >>> I love my job, and you can too! >>> Tel: (720) 319-7530 - Caledonia.Net LLC >>> Tel: (720) 319-8240 - Move Out of the Office >>> > > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > > > > -- > Shawn Iverson > Director of Technology > Rush County Schools > 765-932-3901 x271 > iversons at rushville.k12.in.us > > > > -- > This message has been scanned for viruses and > dangerous content by Iris MailScanner , and is > believed to be clean. > > > > Danita Zanre, Move Out of the Office > I love my job, and you can too! > Tel: (720) 319-7530 - Caledonia Network Consulting > Tel: (720) 319-8240 - Move Out of the Office > danita at caledonia.net | www.moveoutoftheoffice.com > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > http://lists.mailscanner.info/mailman/listinfo/mailscanner > -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Wed Mar 29 11:49:30 2017 From: danita at caledonia.net (Danita Zanre) Date: Wed, 29 Mar 2017 13:49:30 +0200 Subject: Quarantine reports In-Reply-To: <58DB9ACB0200005B000D50F4@mail.caledonia.net> References: <58DB9ACB0200005B000D50F4@mail.caledonia.net> <58DB9ACB0200005B000D50F4@mail.caledonia.net> Message-ID: Okay - that did it. ?I didn?t realize it was needed again. On to other things ;-) - I may still yet try mariadb. ?It might require upgrading my server to SLES 12 though to be totally successful, so that might take awhile! Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 1:32:26 PM, Danita Zanre (danita at caledonia.net) wrote: Hi Shawn, Yes. Twice. One when I first move to shipping, and then when I first moved to development. But not in any of the in-between moves. I'll try that again. ? Thanks, ????-Danita ---------------------------------- Danita Zanr? Tel: (720)319-8240 - Move Out of the Office Tel: (720)319-7530 - Caledonia ---------------------------------- On 29 mar 2017 at 12:25:16 CEST, Shawn Iverson wrote: Have you run upgrade.php ? On Wed, Mar 29, 2017 at 5:24 AM, Danita Zanre wrote: I found another thread about this and moved back to the development branch (I had gone back to ?shipping? because I was experiencing so many odd issues).? Now I get ?unable to validate security token?.? Interestingly enough, I can release mail, I just can?t view it from the quarantine report. ? Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 10:55:29 AM, Danita Zanre (danita at caledonia.net) wrote: PS - if I?m already logged in, I get the ?No! Bad Dog no treat for you? :-( Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 10:53:21 AM, Danita Zanre (danita at caledonia.net) wrote: When I get a quarantine report now, if I click ?view? I?m required to log in, and then I get a message that says ?No input Message ID?.? Have I missed a setting that allows viewing without logging in perhaps? Thanks. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -- Shawn Iverson Director of Technology Rush County Schools 765-932-3901 x271 iversons at rushville.k12.in.us -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. Danita Zanre, Move Out of the Office I love my job, and you can too! Tel:?(720) 319-7530?- Caledonia Network Consulting Tel:?(720) 319-8240?- Move Out of the Office? danita at caledonia.net?|?www.moveoutoftheoffice.com ?? -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -------------- next part -------------- An HTML attachment was scrubbed... URL: From danita at caledonia.net Wed Mar 29 12:01:12 2017 From: danita at caledonia.net (Danita Zanre) Date: Wed, 29 Mar 2017 14:01:12 +0200 Subject: Quarantine reports In-Reply-To: References: <58DB9ACB0200005B000D50F4@mail.caledonia.net> <58DB9ACB0200005B000D50F4@mail.caledonia.net> Message-ID: Bad assumption on my part. ?All is well. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 1:34:14 PM, Jerry Benton (jerry.benton at mailborder.com) wrote: Do I need to say the obvious here? - Jerry Benton www.mailborder.com +1 -?844-436-6245 On Mar 29, 2017, at 7:20 AM, Danita Zanre wrote: Hi Shawn, Yes. Twice. One when I first move to shipping, and then when I first moved to development. But not in any of the in-between moves. I'll try that again. ? Thanks, ????-Danita ---------------------------------- Danita Zanr? Tel: (720)319-8240 - Move Out of the Office Tel: (720)319-7530 - Caledonia ---------------------------------- On 29 mar 2017 at 12:25:16 CEST, Shawn Iverson wrote: Have you run upgrade.php ? On Wed, Mar 29, 2017 at 5:24 AM, Danita Zanre wrote: I found another thread about this and moved back to the development branch (I had gone back to ?shipping? because I was experiencing so many odd issues).? Now I get ?unable to validate security token?.? Interestingly enough, I can release mail, I just can?t view it from the quarantine report. ? Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 10:55:29 AM, Danita Zanre (danita at caledonia.net) wrote: PS - if I?m already logged in, I get the ?No! Bad Dog no treat for you? :-( Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office On March 29, 2017 at 10:53:21 AM, Danita Zanre (danita at caledonia.net) wrote: When I get a quarantine report now, if I click ?view? I?m required to log in, and then I get a message that says ?No input Message ID?.? Have I missed a setting that allows viewing without logging in perhaps? Thanks. Danita Zanr?, Move Out of the Office I love my job, and you can too! Tel: (720) 319-7530 - Caledonia.Net?LLC Tel: (720) 319-8240 - Move Out of the Office -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -- Shawn Iverson Director of Technology Rush County Schools 765-932-3901 x271 iversons at rushville.k12.in.us -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. Danita Zanre, Move Out of the Office I love my job, and you can too! Tel:?(720) 319-7530?- Caledonia Network Consulting Tel:?(720) 319-8240?- Move Out of the Office? danita at caledonia.net?|?www.moveoutoftheoffice.com ?? -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -- This message has been scanned for viruses and dangerous content by Iris MailScanner, and is believed to be clean. -- MailScanner mailing list mailscanner at lists.mailscanner.info http://lists.mailscanner.info/mailman/listinfo/mailscanner -------------- next part -------------- An HTML attachment was scrubbed... URL: From carles at unlimitedmail.org Wed Mar 29 15:52:38 2017 From: carles at unlimitedmail.org (=?UTF-8?Q?[SOLTECSIS]_Carles_Xavier_Munyoz_Bald=c3=b3?=) Date: Wed, 29 Mar 2017 17:52:38 +0200 Subject: Spamassassin check score customized per mailbox. In-Reply-To: References: <0a0563c9-a856-8ed4-3284-a32cdc025ea3@unlimitedmail.org> <95950f79-5e74-084d-2765-a5b6631a5075@msapiro.net> Message-ID: <57e2064d-777b-17d9-e77b-2aa6d4722ab8@unlimitedmail.org> May any of the MailScanner developers tell us if is it possible? Maybe using filter rules? Thank you very much for your help. El 28/03/17 a las 15:39, Peter C. Ndikuwera escribi?: > Hi, > > With SpamAssassin, I believe it's possible using a user's user_prefs but > I'm not sure that MailScanner uses individuals user_prefs when scanning > mail. > > P > > -- > At that time people began... > > On 27 March 2017 at 17:31, Mark Sapiro > wrote: > > On 03/27/2017 01:10 AM, [SOLTECSIS] Carles Xavier Munyoz Bald? wrote: > > > > Is it possible to customize Spamassassin check score per mailbox? > > > > For example, for the mailbox mb1 at example.com : > > score DCC_CHECK 8.000 > > and for mb2 at example.com : > > score DCC_CHECK 4.000 > > > If it were possible, it would be in SpamAssassin, not MailScanner, but I > don't think it's possible. > > -- > Mark Sapiro > The > highway is for gamblers, > San Francisco Bay Area, California better use your sense - B. Dylan > > > -- > MailScanner mailing list > mailscanner at lists.mailscanner.info > > http://lists.mailscanner.info/mailman/listinfo/mailscanner > > > > > > > -- Saludos. ======================================== SOLTECSIS SOLUCIONES TECNOLOGICAS, S.L. Carles Xavier Munyoz Bald? Departamento de I+D+I Tel./Fax: 966 446 046 cmunyoz at soltecsis.com www.soltecsis.com ======================================== --- La informaci?n contenida en este e-mail es confidencial, siendo para uso exclusivo del destinatario arriba mencionado. Le informamos que est? totalmente prohibida cualquier utilizaci?n, divulgaci?n, distribuci?n y/o reproducci?n de esta comunicaci?n sin autorizaci?n expresa en virtud de la legislaci?n vigente. Si ha recibido este mensaje por error, le rogamos nos lo notifique inmediatamente por la misma v?a y proceda a su eliminaci?n. --- From mark at msapiro.net Wed Mar 29 16:09:09 2017 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 29 Mar 2017 09:09:09 -0700 Subject: Spamassassin check score customized per mailbox. In-Reply-To: <57e2064d-777b-17d9-e77b-2aa6d4722ab8@unlimitedmail.org> References: <0a0563c9-a856-8ed4-3284-a32cdc025ea3@unlimitedmail.org> <95950f79-5e74-084d-2765-a5b6631a5075@msapiro.net> <57e2064d-777b-17d9-e77b-2aa6d4722ab8@unlimitedmail.org> Message-ID: <2ac8e118-d77d-45a7-dc88-16fbf9daa5f8@msapiro.net> On 03/29/2017 08:52 AM, [SOLTECSIS] Carles Xavier Munyoz Bald? wrote: > May any of the MailScanner developers tell us if is it possible? > Maybe using filter rules? > > Thank you very much for your help. > > > El 28/03/17 a las 15:39, Peter C. Ndikuwera escribi?: >> Hi, >> >> With SpamAssassin, I believe it's possible using a user's user_prefs but >> I'm not sure that MailScanner uses individuals user_prefs when scanning >> mail. MailScanner runs SpamAssassin as the user that MailScanner runs as (The config setting Run As User). Thus, this is the one and only user context for SpamAssassin. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan