PostfixAdmin Fetchmail (Ubuntu 18.04): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „ Zurück zu PostfixAdmin“)
 
Zeile 1: Zeile 1:
== Daemon deaktivieren ==


In der Datei ''/etc/default/fetchmail'' folgende Zeile anpassen:
<pre>
sudo nano /etc/default/fetchmail
</pre>
<pre>
START_DAEMON=no
</pre>
Danach ''fetchmail'' stoppen:
<pre>
sudo /etc/init.d/fetchmail stop
</pre>
== Abhängigkeiten ==
<pre>
sudo apt-get update
sudo apt-get install liblockfile-simple-perl
</pre>
=== Script ''fetchmail.pl'' ===
Fertiges Script von ''/<document root>/ADDITIONS/'' nach ''/usr/local/bin/'' kopieren:
<pre>
sudo cp /var/www/postfixadmin/ADDITIONS/fetchmail.pl /usr/local/bin/
sudo chown root:vmail /usr/local/bin/fetchmail.pl
sudo chmod 750 /usr/local/bin/fetchmail.pl
</pre>
In der Datei ''fetchmail.pl'' folgende Werte anpassen:
<pre>
sudo nano /usr/local/bin/fetchmail.pl
</pre>
<pre>
# database backend
$db_type = 'mysql';
# host name
$db_host="10.0.0.120";
# database name
$db_name="postfix";
# database username
$db_username="postfix";
# database password
$db_password="<password>";
</pre>
== ''Lock''-Datei anlegen ==
<pre>
sudo -u vmail mkdir /home/vmail/fetchmail/
sudo -u vmail touch /home/vmail/fetchmail/fetchmail-all.lock
</pre>
<pre>
sudo nano /usr/local/bin/fetchmail.pl
</pre>
Pfad zur ''Lock''-Datei von
<pre>
$run_dir="/var/run/fetchmail";
</pre>
nach
<pre>
$run_dir="/home/vmail/fetchmail";
</pre>
ändern, da ''/var/run/'' bei jedem Neustart geleert wird.
== Cronjob anlegen ==
<pre>
sudo -i
crontab -e
</pre>
<pre>
*/1 * * * * sudo -H -u vmail /usr/local/bin/fetchmail.pl > /dev/null 2&>1
</pre>




Zurück zu [[PostfixAdmin_(Ubuntu_18.04)#Fetchmail|PostfixAdmin]]
Zurück zu [[PostfixAdmin_(Ubuntu_18.04)#Fetchmail|PostfixAdmin]]

Version vom 11. Januar 2020, 11:33 Uhr

Daemon deaktivieren

In der Datei /etc/default/fetchmail folgende Zeile anpassen:

sudo nano /etc/default/fetchmail
START_DAEMON=no

Danach fetchmail stoppen:

sudo /etc/init.d/fetchmail stop

Abhängigkeiten

sudo apt-get update
sudo apt-get install liblockfile-simple-perl

Script fetchmail.pl

Fertiges Script von /<document root>/ADDITIONS/ nach /usr/local/bin/ kopieren:

sudo cp /var/www/postfixadmin/ADDITIONS/fetchmail.pl /usr/local/bin/
sudo chown root:vmail /usr/local/bin/fetchmail.pl
sudo chmod 750 /usr/local/bin/fetchmail.pl

In der Datei fetchmail.pl folgende Werte anpassen:

sudo nano /usr/local/bin/fetchmail.pl
# database backend
$db_type = 'mysql';
# host name
$db_host="10.0.0.120";
# database name
$db_name="postfix";
# database username
$db_username="postfix";
# database password
$db_password="<password>";

Lock-Datei anlegen

sudo -u vmail mkdir /home/vmail/fetchmail/
sudo -u vmail touch /home/vmail/fetchmail/fetchmail-all.lock
sudo nano /usr/local/bin/fetchmail.pl

Pfad zur Lock-Datei von

$run_dir="/var/run/fetchmail";

nach

$run_dir="/home/vmail/fetchmail";

ändern, da /var/run/ bei jedem Neustart geleert wird.

Cronjob anlegen

sudo -i
crontab -e
*/1 * * * * sudo -H -u vmail /usr/local/bin/fetchmail.pl > /dev/null 2&>1


Zurück zu PostfixAdmin