2019-09-20 - hschneider, Admin
Cookie Disclaimer: This forum uses only essential, anonymous session cookies (xmailforum*), nothing to be scared of.
XMail Forum · Newbies read here ! All about SMTP,MX-Records,DNS etc. | Help Search Members Calendar |
Welcome Guest ( Log In | Register ) | Resend Validation Email |
sc4vengr |
Posted: Feb 13 2008, 04:52 PM
|
Professional Group: Members Posts: 206 Member No.: 461 Joined: 12-February 03 |
Hello all,
Like everyone, spam is getting on my nerves and today I decided to try the GLST-mod by Davide. I had a few issues getting it to compile under FreeBSD-6.2 so if it can help anyone here is what I did. -unpack the archive (glst-0.26.tar.gz) -open Makefile.unx with your favorite text editor -find this line: INCLUDE = -I. -change it to: INCLUDE = -I/usr/local/include -find the line: LDFLAGS = -change it to: LDFLAGS = -L/usr/local/lib -save and exit your text editor -as root, type: gmake -f Makefile.unx Everything should now compile perfectly except for an error referring to the ".depend" file that is not found which doesn't seems to be important. If it still complains about missing files make sure you have GDBM installed: -cd /usr/ports/databases/gdbm -make install clean Hope this helps anyone! -------------------- You + webcam - clothes - dignity = $
|
dien_phan |
Posted: Feb 14 2008, 07:23 AM
|
Member Group: Members Posts: 62 Member No.: 1493 Joined: 1-February 05 |
Thank you for your post, sc4vengr.
I'm using FreeBSD 6.3 release and am interested in Glst mode. Could you please post glst.conf file you are using? |
sc4vengr |
Posted: Feb 14 2008, 02:23 PM
|
||||
Professional Group: Members Posts: 206 Member No.: 461 Joined: 12-February 03 |
No problem dien_phan! Here is my glst.conf, here are some reasons why these IPs are listed: 1. They have a pool of round-robin outbound mail servers that spans more than one /24 netblock. 2. They have software that considers a 4xx temporary mail failure to be a permanent bounce. 3. Their mail servers retry delivery for 4xx failures continually with no delay. 4. Their mail servers either don't retry at all, or have a very long retry delay (more than 5 hours). 5. The mail servers use a unique sender address for each delivery attempt, even for the same piece of mail. (also known as VERP). 6. The mail servers host high volume mailing lists with a general appeal that try to track bounces by using a unique sender address for each mail (also known as VERP). It looks like facebook mails doesn't get through it tho... This is on my test server.
This is the list that I have found and then converted to the glst.conf format, I would have left the comments inside glst.conf but I wasn't sure about comments support inside this file.
Hope this helps! -------------------- You + webcam - clothes - dignity = $
|
||||
dien_phan |
Posted: Feb 14 2008, 10:54 PM
|
Member Group: Members Posts: 62 Member No.: 1493 Joined: 1-February 05 |
Many thanks for your post. I hope it is helpful for all freebsd & xmail users.
|
dien_phan |
Posted: Mar 13 2008, 08:50 AM
|
Member Group: Members Posts: 62 Member No.: 1493 Joined: 1-February 05 |
Hi,
You receive 'an error referring to the ".depend" file that is not found' because of gdbm.h file not found. You should install in reverse order: first install gdbm port: cd /usr/ports/databases/gdbm && make install clean After that edit Makefile.unx as instructed and run gmake -f Makefile.unx. No error guaranteed. Good luck, |