Search found 3651 matches

by shawniverson
30 May 2015 15:06
Forum: 3.x Bugs
Topic: Name Change Issues
Replies: 8
Views: 8220

Re: Name Change Issues

That's odd. Also, I noticed you can't sudo these. You need to be root.

As root:

Code: Select all

echo "select hostname from maillog limit 10;" | mysql -u mailwatch --password=`grep "^MAILWATCHSQLPWD:" /etc/EFA-Config | sed 's/.*://'` mailscanner
Is the output what you expect?
by shawniverson
30 May 2015 14:59
Forum: 3.x Bugs
Topic: Update to 3.0.0.8 clamd issue
Replies: 25
Views: 75711

Re: Update to 3.0.0.8 clamd issue

There should be an update log file in the following location: /var/log/EFA Please attach a copy of this log or use a pastebin to share so we can see what went wrong. As for your immediate issue, it sounds like clamd.conf wasn't modified properly. 1) Drop in your old clamd.conf just like you did. 2) ...
by shawniverson
29 May 2015 21:28
Forum: How-to
Topic: Mail does not get trough Postfix
Replies: 12
Views: 9569

Re: Mail does not get trough Postfix

Something is wrong with your greylisting. When you restart sqlgrey, you should see the following: May 29 17:27:26 efa sqlgrey: 2015/05/29-17:27:26 sqlgrey (type Net::Server::Multiplex) starting! pid(26275) May 29 17:27:26 efa sqlgrey: Using default listen value of 128 May 29 17:27:26 efa sqlgrey: Bi...
by shawniverson
29 May 2015 21:18
Forum: Discussion
Topic: Stops processing email and queue builds up
Replies: 18
Views: 9821

Re: Stops processing email and queue builds up

I agree, I don't see anything there per se...

Just out of curiosity, was it the incoming or outgoing queues that were stalled?
by shawniverson
29 May 2015 02:04
Forum: Discussion
Topic: Receive failure and bounce back
Replies: 3
Views: 3417

Re: Receive failure and bounce back

What about your employer's domain....
by shawniverson
29 May 2015 00:21
Forum: How-to
Topic: SA-Learn Issues
Replies: 1
Views: 2192

Re: SA-Learn Issues

Are you seeing any errors in your httpd logs in /var/log/httpd?
by shawniverson
29 May 2015 00:21
Forum: 3.x Bugs
Topic: UNTRUSTED NETWORK: Message not reported as Spam
Replies: 9
Views: 8049

Re: UNTRUSTED NETWORK: Message not reported as Spam

Are your users trying to submit from a cell phone (external network)?
by shawniverson
29 May 2015 00:14
Forum: 3.x Bugs
Topic: Name Change Issues
Replies: 8
Views: 8220

Re: Name Change Issues

Definitely an issue in mysql hostname field... To fix...change "mynewfqdn" to the fully qualified domain name of your host as root: echo "UPDATE maillog SET hostname='mynewfqdn';" | mysql -u mailwatch --password=`grep "^MAILWATCHSQLPWD:" /etc/EFA-Config | sed 's/.*://'`...
by shawniverson
28 May 2015 22:56
Forum: 3.x Bugs
Topic: Name Change Issues
Replies: 8
Views: 8220

Re: Name Change Issues

I am seeing a problem after changing the name of my test server:

In detail.php:
XML-RPC Error: Didn't receive 200 OK from remote server. (HTTP/1.0 301 Moved Permanently)
I am troubleshooting further...
by shawniverson
28 May 2015 21:29
Forum: Discussion
Topic: Stops processing email and queue builds up
Replies: 18
Views: 9821

Re: Stops processing email and queue builds up

That looks fine. Now, are you able to see anything happening in /var/log/maillog or /var/log/messages at the time when the failure occurred that could offer some clues?

Code: Select all

sudo less /var/log/messages
sudo less /var/log/maillog
by shawniverson
28 May 2015 20:34
Forum: How-to
Topic: Emailaddress used to release mail
Replies: 6
Views: 4873

Re: Emailaddress used to release mail

You could add an entry into /etc/hosts to get around this, I believe. :D
by shawniverson
28 May 2015 20:31
Forum: Discussion
Topic: Receive failure and bounce back
Replies: 3
Views: 3417

Re: Receive failure and bounce back

I have setup a brand new Exchange and everything seems to be working if I take EFA out of the picture. i have the SMTP port in FW configured to go to EFA. I have tried sending email from Gmail and my work address but no luck. >> #554 5.7.1 Service unavailable; Client host [xx.xx.xxx.] blocked using...
by shawniverson
28 May 2015 20:20
Forum: Discussion
Topic: Ram Disk
Replies: 5
Views: 3752

Re: Ram Disk

drewmorris wrote:One other question about ram disk... does Clamd use it to unpack as well? Using a ramdisk for Clamd seems like a good idea as well.
Yes
by shawniverson
28 May 2015 20:19
Forum: Discussion
Topic: Stops processing email and queue builds up
Replies: 18
Views: 9821

Re: Stops processing email and queue builds up

When you look at free space, are you looking at just the VM or in greater detail?

Run this from a console in EFA:

Code: Select all

sudo df -h
by shawniverson
26 May 2015 22:07
Forum: 3.x Bugs
Topic: 3.0.7 Transport Settings domain editing error
Replies: 5
Views: 3989

Re: 3.0.7 Transport Settings domain editing error

Patch fix for Transport editor in EFA-Configure: 56a57 > [[ $(((y/2 + 1) % 25)) -eq 0 ]] && pause 68c69 < if [[ $choice > "0" && $choice < $((tLen/2+1)) ]]; then --- > if [[ $choice -gt 0 && $choice -lt $((tLen/2+1)) ]]; then Copy this into a file called func_mailse...
by shawniverson
25 May 2015 00:01
Forum: Announcements
Topic: EFA 3.0.0.8 Released
Replies: 0
Views: 4715

EFA 3.0.0.8 Released

We would also like to thank everyone for their support and contributions to this project. :clap: The following issues have been fixed in 3.0.0.8: Issue #40 Enhancement - Extend MailWatch to hide high spam from regular users Issue #45 Enhancement - Add ScamNailer ClamAV ruleset (superceded by issue #...
by shawniverson
24 May 2015 18:48
Forum: How-to
Topic: Logjam Vulnerability
Replies: 2
Views: 2282

Re: Logjam Vulnerability

Apache already has DH 2048bit and export ciphers disabled. No action needed here. Apache is not vulnerable in EFA to logjam Postfix is vulnerable. To fix weak DH key: Generate a 2048bit Diffie-Hellman key sudo openssl dhparam -out /etc/postfix/ssl/dhparam.pem 2048 Add the DH key to postfix: sudo pos...
by shawniverson
23 May 2015 20:28
Forum: Discussion
Topic: Bounce Loop in EFA
Replies: 5
Views: 4454

Re: Bounce Loop in EFA

Known issue, but you would see the problem in the following log: /var/log/maillog You would see MailScanner attempting to submit to clamd for scanning, failing, and requeing the same batch over and over. We found that 2GB is not sufficient, so all new builds start with 4GB of memory. I encourage eve...
by shawniverson
23 May 2015 20:25
Forum: 3.x Bugs
Topic: 3.0.7 Transport Settings domain editing error
Replies: 5
Views: 3989

Re: 3.0.7 Transport Settings domain editing error

Strange thing. When I try to edit a domain using EFA-Configure (Mail Settings->Transport Settings), I might get an error saying 'Error.... "n" is not an option..." I have a list of 116 domains. If I type '116', it lets me edit the last domain in the list. If I type '46' it complains ...
by shawniverson
21 May 2015 12:36
Forum: Discussion
Topic: Bounce Loop in EFA
Replies: 5
Views: 4454

Re: Bounce Loop in EFA

Likely clamd has crashed on your system. Reboot to stabilize your system temporarily.

How much memory do you have?

How many mailscanner threads are you running?
by shawniverson
21 May 2015 00:46
Forum: How-to
Topic: Logjam Vulnerability
Replies: 2
Views: 2282

Logjam Vulnerability

Starting a thread on the Logjam Vulnerability.

I am currently researching and will post results and how-to here. :ugeek:
by shawniverson
19 May 2015 20:54
Forum: Introduction
Topic: Hi there!
Replies: 1
Views: 2140

Re: Hi there!

:text-welcomewave:
by shawniverson
19 May 2015 20:53
Forum: How-to
Topic: EFA allowing attachments through
Replies: 1
Views: 2125

Re: EFA allowing attachments through

www.emailsecuritycheck.net has some silly tests. For example... "attached.()bat" "()bat" is not a .bat file. It is a ".()bat" file. There's no rule in MailScanner by default to block a ".()bat" file. Besides, it would need to be .bat before it could do any harm.
by shawniverson
18 May 2015 03:01
Forum: Announcements
Topic: EFA 3.0.0.8-beta Released
Replies: 0
Views: 3212

EFA 3.0.0.8-beta Released

The 3.0.0.8-beta update is now available for BETA TESTING ONLY. DO NOT USE IN PRODUCTION. We would also like to thank everyone for their support and contributions to this project. :clap: The following issues have been fixed (hopefully) in 3.0.0.8-beta: Issue #40 Enhancement - Extend MailWatch to hid...