Building SMS Gateway using CENTOS
Another article, I posted how to setup sms-gateway on UBUNTU box.
Now I try to setup sms gateway on Centos Box.
# uname -a
Linux hardcorepolice 2.6.18-92.1.6.el5.centos.plusxen #1 SMP Thu Jun 26 13:43:14 EDT 2008 i686 i686 i386 GNU/Linux
Fedora repository
Fedora repository is available at http://freshrpms.net/packages/. (Contributed by Matthias Saou)
But I just simply run the command
# yum install kannel
Loading […]
Chmod authorization Proftpd
Sometimes we need to configures manually all the chmod of each files and directories.
You can configure each ftp accounts from enable / disable chmod using directives on proftpd.conf
<Limit SITE_CHMOD>
AllowUser ftpadmin
DenyAll
</Limit>
Above directives mean that only ftpadmin user can use chmod, anyone else denied.
To be able all ftp user use chmod :
<Limit SITE_CHMOD>
AllowAll
</Limit>
Save proftpd.conf and reload the […]