blob: 3f469857ced0d996937643d51196c2d284ed34f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
###############################################################################
SOGo 3 was installed
In order to run the sogo daemon (sogod), you will need to create and configure
the main configuration file, e.g.:
cp -p ${LOCALBASE}/etc/sogo/sogo.conf.sample ${LOCALBASE}/etc/sogo/sogo.conf
And to allow the service to run at system startup, add sogod_enable="YES"
in your rc.conf.
If you need to allow email alarms (notifications) for calendar events, copy
the sample credentials file:
cp -p ${LOCALBASE}/etc/sogo/ealarms-notify.creds.sample \
${LOCALBASE}/etc/sogo/ealarms-notify.creds
Then replace the username:password with appropriate credentials for SMTP AUTH
sending capabilities.
Then copy the sample cron executable:
cp -p ${LOCALBASE}/GNUstep/Local/Tools/Admin/cron-ealarms-notify.sample \
${LOCALBASE}/GNUstep/Local/Tools/Admin/cron-ealarms-notify
And edit this file to suit your server timezone (e.g. TZ=Africa/Algiers).
Then add the following lines to the root users' crontab (crontab -e):
# Process email reminders every minute
* * * * * ${LOCALBASE}/GNUstep/Local/Tools/Admin/cron-ealarms-notify
If you need to automatically purge vacation messages from users sieve scripts,
copy the sample credentials file:
cp -p ${LOCALBASE}/etc/sogo/expire-autoreply.creds.sample \
${LOCALBASE}/etc/sogo/expire-autoreply.creds
Then replace the username:password with appropriate credentials for your
IMAP servers' sieve account.
Then copy the sample cron executable:
cp -p ${LOCALBASE}/GNUstep/Local/Tools/Admin/cron-expire-autoreply.sample \
${LOCALBASE}/GNUstep/Local/Tools/Admin/cron-expire-autoreply
And edit this file to suit your server timezone (e.g. TZ=Africa/Algiers).
Then add the following lines to the root users' crontab (crontab -e):
# Vacation messages expiration
# The credentials file should contain the sieve admin credentials (username:passwd)
0 0 * * * ${LOCALBASE}/GNUstep/Local/Tools/Admin/cron-expire-autoreply
For more information about using SOGo, visit:
http://www.sogo.nu/downloads/documentation.html
###############################################################################
|