Search found 928 matches

by myVesta
Fri Feb 10, 2023 3:27 pm
Forum: Mail
Topic: How to get list of all emails sent from specific email address
Replies: 0
Views: 4053

How to get list of all emails sent from specific email address

cat /var/log/exim4/mainlog | exigrep "<= info@somemail.com" cat /var/log/exim4/mainlog.1 | exigrep "<= info@somemail.com" zcat /var/log/exim4/mainlog*.gz | exigrep "<= info@somemail.com" If you want to put it in one big log file: touch mylog.txt cat /var/log/exim4/main...
by myVesta
Wed Feb 08, 2023 9:48 am
Forum: phpMyAdmin
Topic: Can I stop phpmyadmin from being accessed by IP address?
Replies: 2
Views: 1545

Re: How to stop access phpmyadmin via ip address ?

Currently there is no way to do that.
But you can 'assign' phpmyadmin to some subdomain that is known only to you - viewtopic.php?f=8&t=37
The same way (set 'group=youruser' in fpm conf) you can 'unassign' the phpmyadmin from hostname, to stop bots.
by myVesta
Mon Feb 06, 2023 1:19 pm
Forum: Backup
Topic: config file for backups
Replies: 3
Views: 2885

Re: config file for backups

Never, because it contains essential information about the server configuration.
by myVesta
Mon Feb 06, 2023 11:31 am
Forum: Backup
Topic: config file for backups
Replies: 3
Views: 2885

Re: config file for backups

i think you can override those variables in /usr/local/vesta/conf/vesta.conf
because we include that file as last - https://github.com/myvesta/vesta/blob/m ... er#L19-L23
by myVesta
Mon Jan 30, 2023 1:07 pm
Forum: PHP
Topic: Widening open_basedir
Replies: 1
Views: 1655

Widening open_basedir

open_basedir is a restriction to prevent a website from accessing any paths on the server that are not authorized, such as the paths to other domains on shared web servers, or to access the hosting software. The open_basedir function defines the locations or paths from which PHP is allowed to acces...
by myVesta
Fri Jan 27, 2023 12:47 pm
Forum: General discussion
Topic: safe way to reinstall roundcube?
Replies: 6
Views: 2586

Re: safe way to reinstall roundcube?

compiz wrote: Wed Sep 08, 2021 11:38 am Now i am getting
"CONFIGURATION ERROR
config.inc.php was not found.
Please read the INSTALL instructions!"
see viewtopic.php?t=37
by myVesta
Fri Jan 27, 2023 11:27 am
Forum: PHP
Topic: How to to run PHP script every hour (how to add php to cron)
Replies: 0
Views: 2397

How to to run PHP script every hour (how to add php to cron)

For example, let's say you want to run php script example.com/pinn/insertDataMain.php every hour. First check what PHP version you are running. Screenshot_117.png Then go to Add cron: Screenshot_118.png Because we are running PHP 8.0 and our URL is example.com/pinn/insertDataMain.php and let's say w...
by myVesta
Sun Jan 22, 2023 12:04 pm
Forum: Mail
Topic: SSL support for SMTP and IMAP for mail.somedomain.com
Replies: 11
Views: 16635

Re: SSL support for SMTP and IMAP for mail.somedomain.com

Thank you very much, I think HestiaCP has similar solution, we planned to use that, because we are basically the same panel.
by myVesta
Sat Jan 07, 2023 8:33 pm
Forum: PHP
Topic: Apache-less variant - PHP-FPM Upgrade from PHP 7.3 to PHP 8.1
Replies: 3
Views: 10748

Re: NGINX / PHP-FPM Upgrade from PHP 7.3 to PHP 8.1

instead of sudo apt-get purge php7.* do the following: sudo update-alternatives --set php /usr/bin/php7.3 sudo mv /etc/php/7.3 /root/7.3 sudo mv /etc/php/7.4 /root/7.4 sudo mv /etc/php/8.2 /root/8.2 sudo apt update sudo apt remove --purge php7.3-fpm sudo apt remove --purge php7.4-fpm sudo apt remove...