Search results

  1. P

    Persistent DirectAdmin Folder Permission Issue

    I also used, ./set_permission.sh all As suggested, no avail. Any more ideas?
  2. P

    Persistent DirectAdmin Folder Permission Issue

    Hello, ./set_permissions.sh all Is bit of an overkill, i'm using; ./set_permissions.sh da_files And it works, fixes the problem. Then somehow, ownership returns back to root.root shortly after. Regards
  3. P

    Persistent DirectAdmin Folder Permission Issue

    Hello there! The permissions of the DirectAdmin folder are automatically changing to the root user consistently. Even though we reset the permissions with; ./set_permission.sh using da_files, they revert back to root after approximately 30 minutes. After examining cron and DirectAdmin log...
  4. P

    How do i disable e-mail traffic calculation?

    Anyone has any idea? Cleaning; /var/log/dovecot-lmtp.log /var/log/dovecot-lmtp-error.log /etc/virtual/usage/*.bytes Files just cause the customers unable to see their sent mail details, nothing else. I don't want directadmin to calculate e-mail traffic but couldn't figure out a way to. Regards
  5. P

    How do i disable e-mail traffic calculation?

    I've detected that the script i've prepared does not work, DirectAdmin still calculates Email, Imap and POP traffic. How can i prevent DirectAdmin from calculating these? Regards
  6. P

    How do i disable e-mail traffic calculation?

    Hello all, I have a customized exim installation for rate limiting and using a gateway server to send e-mails. Everything works well, however DirectAdmin sometimes randomly calculate some unusual traffic. One account might calculate 100 GB of Email traffic in a day, while another account...
  7. P

    One domain per user

    Solved it by adding; #!/usr/bin/env bash if [ "$action" = "create" ] || [ "$action" = "modify" ]; then if [ "$created_by" = 1 ]; then echo "You cannot add mode than one domain to a user account"; exit 1 fi fi exit 0; to...
  8. P

    One domain per user

    Hello, I don't want resellers to be able to give more than one domain usage to one user, and users to add more than one domain to their user accounts. I've edited; /usr/local/directadmin/scripts/custom/all_pre.sh To include; #Only permit 1 domain to a user# if [ "$command" =...
  9. P

    task.queue.da is not processed

    This, while looking promising did not work. mv task.queue.da task.queue /usr/local/directadmin/dataskq d200 I had to move task.queue.da to rename it as task.queue and start dataskq manually again for directAdmin cron backups to work. This is after i updated DA to DirectAdmin 1.641. (it was...
  10. P

    task.queue.da is not processed

    No one? I am currently using a cron such as this; 0 15 * * * cd /usr/local/directadmin/data/ && mv task.queue.da task.queue ; /usr/local/directadmin/dataskq d200 >/dev/null 2>&1 But i want the panel to work as expected, whitout funny patches made by me. Regards
  11. P

    task.queue.da is not processed

    Hello, My Backup crons are being written to the following file by DirectAdmin; /usr/local/directadmin/data/task.queue.da However, for anything other the DirectAdmin creates and processes the following file; /usr/local/directadmin/data/task.queue Manually starting dataskq only processes...
  12. P

    Roundcube Folder Issue

    Hello, cd /usr/local/directadmin/custombuild ./build todovecot Solved the issue.
  13. P

    Roundcube Folder Issue

    Hello, When i tried to create a folder in roundcube, it fails with the following error; "Server Error: CREATE: Internal error occurred. Refer to server log for more information. [2022-05-05 13:29:56] (0.004 + 0.000 + 0.003 secs)." Logs in the /var/www/html/roundcube/logs/ has no error message...
  14. P

    OpenSSL / Polkit problem - Not receiving mails from Gmail

    Hello, I've resolved the problem. These are the steps i've taken to resolve it; cd /root wget https://ftp.openssl.org/source/old/1.0.2/openssl-1.0.2k.tar.gz Then i've went to the openssl directory i've manually compiled and uninstalled it; cd /usr/local/src/openssl-1.1.1l make uninstall...
  15. P

    OpenSSL / Polkit problem - Not receiving mails from Gmail

    Hello, wget https://ftp.openssl.org/source/old/1.0.2/openssl-1.0.2k.tar.gz tar -zxvf openssl-1.0.2k.tar.gz cd openssl-1.0.2k ./config make depend make make install ln -s /usr/bin/openssl /usr/local/bin/openssl openssl version ln -s /opt/alt/openssl11/lib64/libssl.so.1.1...
  16. P

    OpenSSL / Polkit problem - Not receiving mails from Gmail

    Yeah, did not work. I've manually compiled an older versiyon of openssl too, system is stubborn to use and print ver. 1.1.1l Regards
  17. P

    OpenSSL / Polkit problem - Not receiving mails from Gmail

    Addinational Info: I'm trying; yum downgrade openssl But it fails. [root@ns78-out custombuild]# yum downgrade openssl Loaded plugins: fastestmirror, rhnplugin This system is receiving updates from CLN. Loading mirror speeds from cached hostfile * cloudlinux-x86_64-server-7...
  18. P

    OpenSSL / Polkit problem - Not receiving mails from Gmail

    Hello, I found out that i am unable to build anything, i cannot even rebuild exim via custombuild. The Error seems to be related to OpenSSL version, i've manually compiled openssl by myself a few months back. I Don't remember the full commands but it was something like this; cd...
  19. P

    Solved Custombuild is not honored

    It compiled whitout any problems when i ran custombuild by myself. I'm even able to compile curl whitout any problem now. Thanks for the heads up.
Back
Top