|
Jun 21
|
Run:
dumpe2fs -h /dev/sda1
or
tune2fs -l /dev/sda1
where /dev/sda1 is you partition, and search for Block size:
|
|
Run: dumpe2fs -h /dev/sda1 or tune2fs -l /dev/sda1 where /dev/sda1 is you partition, and search for Block size:
1. Type about:config in Firefox location bar and press Enter 2. Double-click on Preference.Name and change the value.
I have qmailtoaster installation so my users are in: /home/vpopmail/domains/DOMAIN.XXX/USER you need two create two file: first called “mailfilter” can be put wherever you want (this file will be in .qmail file), me I choose: /home/vpopmail/domains/ so now I have: /home/vpopmail/domains/mailfilter second called “.qmail” must be pun in user folder in the same dir with Maildir folder, like this: /home/vpopmail/domains/MYDOMAIN.XXX/USER/.qmail File contents are: .qmail
mailfilter
This works for users in witch dirs you put .qmail file. If you want for whole domain you must use : /home/vpopmail/domains/MYDOMAIN.XXX/.qmail-default file instead of .qmail in user directory.
First locate simcontrol file at /var/qmail/control The default file looked like this: :clam=yes,spam=yes,spam_hits=10,attach=.mp3:.src:.bat:.pif:.exe If you want to just stop spam processing for a single user you have to put: user@domain.com:clam=yes,spam=no,spam_hits=10 in front of existing line, result: user@domain.com:clam=yes,spam=no,spam_hits=10 for an entire domain just put: domain.com:clam=yes,spam=no,spam_hits=10 Save an run #qmailctl cdb
qmail + SPAMD +FC12 error: error: Can’t locate Crypt/OpenSSL/Bignum.pm in @INC (@INC contains: /usr/lib/perl5/vendor_perl/5.10.0/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.10.0 /usr/ solution: run cpan and install Crypt::OpenSSL::Bignum module. > cpan >install Crypt::OpenSSL::Bignum
if you want to modify qmailadmin to check if new password is strong you can do like this: edit qmailadmin.c and: add: #include <ctype.h> I wrote a function to check if new password contains at least 1 alphachar and 1 digit. add it before int main(argc,argv)
#!/bin/bash # check if directory exits NOTE: -maxdepth 0 is for directories in curent dir. If you want to rename in depth use -depth instead |
Recent Comments