initial commit of file from CVS for smeserver-sogo on Sat Sep 7 16:42:51 AEST 2024
This commit is contained in:
6
root/etc/cron.hourly/sogo-sessions
Normal file
6
root/etc/cron.hourly/sogo-sessions
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
TIME=$(/sbin/e-smith/db configuration getprop sogod SessionDuration || echo 1440)
|
||||
|
||||
# Remove old SOGo sessions entries
|
||||
su -l -s /bin/bash sogo -c "/usr/sbin/sogo-tool expire-sessions $TIME"
|
@@ -0,0 +1 @@
|
||||
8843
|
@@ -0,0 +1 @@
|
||||
public
|
@@ -0,0 +1 @@
|
||||
enabled
|
@@ -0,0 +1 @@
|
||||
service
|
@@ -0,0 +1 @@
|
||||
2048
|
@@ -0,0 +1 @@
|
||||
11211
|
@@ -0,0 +1 @@
|
||||
private
|
@@ -0,0 +1 @@
|
||||
enabled
|
@@ -0,0 +1 @@
|
||||
service
|
@@ -0,0 +1 @@
|
||||
NO
|
@@ -0,0 +1 @@
|
||||
disabled
|
@@ -0,0 +1 @@
|
||||
admin
|
@@ -0,0 +1 @@
|
||||
Drafts
|
@@ -0,0 +1 @@
|
||||
NO
|
@@ -0,0 +1 @@
|
||||
389
|
@@ -0,0 +1 @@
|
||||
YES
|
@@ -0,0 +1 @@
|
||||
NO
|
@@ -0,0 +1 @@
|
||||
60
|
@@ -0,0 +1 @@
|
||||
3540
|
@@ -0,0 +1 @@
|
||||
3540
|
@@ -0,0 +1 @@
|
||||
2048
|
@@ -0,0 +1 @@
|
||||
100
|
@@ -0,0 +1 @@
|
||||
Sent
|
@@ -0,0 +1 @@
|
||||
1440
|
@@ -0,0 +1 @@
|
||||
Junk
|
1
root/etc/e-smith/db/configuration/defaults/sogod/TCPPort
Normal file
1
root/etc/e-smith/db/configuration/defaults/sogod/TCPPort
Normal file
@@ -0,0 +1 @@
|
||||
20000
|
@@ -0,0 +1 @@
|
||||
Trash
|
@@ -0,0 +1 @@
|
||||
3600
|
@@ -0,0 +1 @@
|
||||
10
|
1
root/etc/e-smith/db/configuration/defaults/sogod/status
Normal file
1
root/etc/e-smith/db/configuration/defaults/sogod/status
Normal file
@@ -0,0 +1 @@
|
||||
enabled
|
1
root/etc/e-smith/db/configuration/defaults/sogod/type
Normal file
1
root/etc/e-smith/db/configuration/defaults/sogod/type
Normal file
@@ -0,0 +1 @@
|
||||
service
|
33
root/etc/e-smith/db/configuration/migrate/SOGoPassword
Normal file
33
root/etc/e-smith/db/configuration/migrate/SOGoPassword
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
my $sogodrec = $DB->get('sogod')
|
||||
|| $DB->new_record('sogod', {type => 'service'});
|
||||
my $sogod_pw = $sogodrec->prop('DbPassword');
|
||||
if (not $sogod_pw or length($sogod_pw) < 57)
|
||||
{
|
||||
use MIME::Base64 qw(encode_base64);
|
||||
|
||||
$sogod_pw = "not set due to error";
|
||||
if ( open( RANDOM, "/dev/urandom" ) )
|
||||
{
|
||||
my $buf;
|
||||
# 57 bytes is a full line of Base64 coding, and contains
|
||||
# 456 bits of randomness - given a perfectly random /dev/random
|
||||
if ( read( RANDOM, $buf, 57 ) != 57 )
|
||||
{
|
||||
warn("Short read from /dev/random: $!");
|
||||
}
|
||||
else
|
||||
{
|
||||
$sogod_pw = encode_base64($buf);
|
||||
chomp $sogod_pw;
|
||||
$sogod_pw =~ s/\//\./g; # SOGo hates passwords with slashes
|
||||
}
|
||||
close RANDOM;
|
||||
}
|
||||
else
|
||||
{
|
||||
warn "Could not open /dev/urandom: $!";
|
||||
}
|
||||
$sogodrec->set_prop('DbPassword', $sogod_pw);
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
##we want that sogo be an admin in dovecot for expire-autoreply
|
||||
use esmith::ConfigDB;
|
||||
my $DB = esmith::ConfigDB->open or die ("can not open db configuration : $!");
|
||||
$DB->set_prop('dovecot','AdminIsMaster','enabled');
|
||||
}
|
4
root/etc/e-smith/events/actions/sogo-backup
Executable file
4
root/etc/e-smith/events/actions/sogo-backup
Executable file
@@ -0,0 +1,4 @@
|
||||
mkdir /home/e-smith/sogo &> /dev/null
|
||||
/usr/sbin/sogo-tool backup /tmp/backup ALL &> /dev/null
|
||||
tar cvzf /home/e-smith/sogo/backup.tgz -C /tmp/ backup &> /dev/null
|
||||
rm -rf /tmp/backup &> /dev/null
|
16
root/etc/e-smith/events/actions/sogo-delete-user
Normal file
16
root/etc/e-smith/events/actions/sogo-delete-user
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
EVENT=$1
|
||||
USER=$2
|
||||
|
||||
if [ -z "$EVENT" ]; then
|
||||
echo "event name is missing"
|
||||
exit 1
|
||||
fi
|
||||
if [ -z "$USER" ]; then
|
||||
echo "user account is missing"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
su -l -s /bin/bash sogo -c "/usr/sbin/sogo-tool remove $USER" > /dev/null 2>&1
|
||||
|
99
root/etc/e-smith/events/actions/sogo_upgrade
Executable file
99
root/etc/e-smith/events/actions/sogo_upgrade
Executable file
@@ -0,0 +1,99 @@
|
||||
#!/usr/bin/perl -w
|
||||
#----------------------------------------------------------------------
|
||||
# copyright (C) 2010 Nethesis srl
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
use strict;
|
||||
use DBI;
|
||||
use esmith::ConfigDB;
|
||||
use esmith::util;
|
||||
|
||||
# Exit early if there is nothing to do
|
||||
die("sogo db must exist") unless ( -d "/var/lib/mysql/sogo/");
|
||||
die("sogo db must exist") unless ( -f "/var/lib/mysql/sogo/sogo_folder_info.frm");
|
||||
|
||||
# This is a translation of the script 'sql-update-1.2.2_to_1.3.0-mysql.sh'
|
||||
# that is safe to run multiple times, and which can be run on a 1.2.2
|
||||
# installation without barfing.
|
||||
|
||||
my $conf = esmith::ConfigDB->open_ro
|
||||
or die "Can't open configuration database: $!\n";
|
||||
|
||||
our $username = 'sogo';
|
||||
our $password = $conf->get_prop("sogod", "DbPassword") || '';
|
||||
our $database = 'sogo';
|
||||
our $dbi_options = { PrintError => 0, ChopBlanks => 1, AutoCommit => 1 };
|
||||
|
||||
my $db_handle = DBI->connect("DBI:mysql:$database",
|
||||
$username, $password, $dbi_options) ||
|
||||
die ("Connection error: $DBI::errstr");
|
||||
|
||||
my $folders_sth = $db_handle->prepare(qq{
|
||||
SELECT SUBSTRING_INDEX(c_quick_location, '/', -1)
|
||||
FROM sogo_folder_info WHERE c_folder_type = 'Appointment';
|
||||
}) || die ("Unable to prepare query: $DBI::errstr");
|
||||
|
||||
$folders_sth->execute() || die ("Unable to execute query: $DBI::errstr");
|
||||
|
||||
while (my @folders_row = $folders_sth->fetchrow_array()) {
|
||||
$db_handle->do(qq{
|
||||
ALTER TABLE $folders_row[0] ADD COLUMN c_category VARCHAR(255);
|
||||
});
|
||||
}
|
||||
|
||||
# This is a translation of the script 'sql-update-1.3.3_to_1.3.4-mysql.sh'
|
||||
# that is safe to run multiple times, and which can be run on a 1.2.2 or 1.3.2
|
||||
# installation without barfing.
|
||||
|
||||
my $contacts_sth = $db_handle->prepare(qq{
|
||||
SELECT SUBSTRING_INDEX(c_quick_location, '/', -1)
|
||||
FROM sogo_folder_info where c_folder_type = 'Contact';
|
||||
}) || die ("Unable to prepare query: $DBI::errstr");
|
||||
|
||||
$contacts_sth->execute() || die ("Unable to execute query: $DBI::errstr");
|
||||
|
||||
while (my @contacts_row = $contacts_sth->fetchrow_array()) {
|
||||
$db_handle->do(qq{
|
||||
ALTER TABLE $contacts_row[0] ADD COLUMN c_categories VARCHAR(255);
|
||||
});
|
||||
}
|
||||
|
||||
# This is a translation of the script sql-update-1.3.11_to_1.3.12-mysql.sh
|
||||
# that is safe to run multiple times, and which can be run on a 1.2.2 or 1.3.9
|
||||
# installation without barfing.
|
||||
$db_handle->do(qq{
|
||||
ALTER TABLE sogo_sessions_folder ADD PRIMARY KEY (c_id);
|
||||
});
|
||||
|
||||
# This is a translation of the script sql-update-1.3.16_to_1.3.17-mysql.sh
|
||||
# This script only works with mysql
|
||||
# updates c_cycleinfo to mediumtext
|
||||
#
|
||||
|
||||
my $tables_sth = $db_handle->prepare(qq{
|
||||
SELECT SUBSTRING_INDEX(c_quick_location, '/', -1)
|
||||
FROM sogo_folder_info where c_path3 = 'Calendar';
|
||||
}) || die ("Unable to prepare query: $DBI::errstr");
|
||||
|
||||
$tables_sth->execute() || die ("Unable to execute query: $DBI::errstr");
|
||||
|
||||
while (my @table_row = $tables_sth->fetchrow_array()) {
|
||||
$db_handle->do(qq{
|
||||
ALTER TABLE $table_row[0] MODIFY c_cycleinfo mediumtext;
|
||||
});
|
||||
}
|
||||
|
21
root/etc/e-smith/events/actions/sogo_upgrade_2.3
Normal file
21
root/etc/e-smith/events/actions/sogo_upgrade_2.3
Normal file
@@ -0,0 +1,21 @@
|
||||
#! /bin/sh
|
||||
|
||||
# This script updates c_partstates to mediumtext
|
||||
# adds c_description to Calendar quick tables
|
||||
# http://www.sogo.nu/bugs/view.php?id=3175
|
||||
# the field length was actually changed in v2.2.18
|
||||
|
||||
for TABLE in $(/usr/bin/mysql sogo -s -e "select SUBSTRING_INDEX(c_quick_location, '/', -1) from sogo_folder_info where c_path3 = 'Calendar';"); do
|
||||
/usr/bin/mysql sogo -e "ALTER TABLE $TABLE MODIFY c_partstates mediumtext;"
|
||||
/usr/bin/mysql sogo <<EOF
|
||||
DELIMITER ;;
|
||||
CREATE PROCEDURE upgrade_230()
|
||||
BEGIN
|
||||
DECLARE CONTINUE HANDLER FOR 1060 BEGIN END;
|
||||
ALTER TABLE $TABLE ADD COLUMN c_description mediumtext;
|
||||
END;;
|
||||
CALL upgrade_230();;
|
||||
DROP PROCEDURE upgrade_230;
|
||||
EOF
|
||||
|
||||
done
|
60
root/etc/e-smith/locale/bg/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/bg/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="bg">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Състояние</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/da/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/da/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="da">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/de/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/de/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="de">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/el/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/el/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="el">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="en-us">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/es/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/es/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="es">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Estado</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/et/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/et/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="et">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Olek</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/fr/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/fr/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="fr">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Logiciel de groupe de travail SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Réglages de SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>Vous pouvez désactiver le service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>État</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>Quand un utilisateur donne des droits (sur un agenda ou un carnet d'adresses), SOGo peut prévenir automatiquement les personnes concernées que de nouvelles données sont disponibles, en leurs envoyant un courriel. Voulez-vous activer cette fonctionnalité ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification de modifications dans les droits d'accès</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>Si cette fonctionnalité est activée, les utilisateurs peuvent s'abonner aux comptes IMAP externes. Ils pourront configurer tous leurs comptes de messagerie depuis l'interface Web. Aimeriez-vous activer cette fonctionnalité ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>Comptes externes</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>Si cette fonctionnalité est activée, les utilisateurs peuvent partager publiquement certaines ressources (sans authentification). Aimeriez-vous activer cette fonctionnalité ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Accès public</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>Si cette fonctionnalité est activée, les utilisateurs peuvent utiliser le service de synchronisation active. Aimeriez-vous activer cette fonctionnalité ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Synchronisation active</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>Si cette fonctionnalité est activée, les utilisateurs peuvent recevoir des alarmes par courriel avant que leurs rendez-vous soient inscrits dans l'agenda. Aimeriez-vous activer cette fonctionnalité ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Alertes par courriel avant rendez-vous</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/he/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/he/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="he">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>מצב</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/hu/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/hu/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="hu">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Állapot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/id/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/id/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="id">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/it/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/it/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="it">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Stato</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/ja/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/ja/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="ja">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>状態</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/nb/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/nb/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="nb">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/nl/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/nl/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="nl">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/pl/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/pl/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="pl">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Stan</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="pt-br">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/pt/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/pt/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="pt">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/ro/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/ro/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="ro">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Stare</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/ru/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/ru/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="ru">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Состояние</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/sl/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/sl/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="sl">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/sv/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/sv/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="sv">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Status</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/th/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/th/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="th">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>สถานะ</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/tr/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/tr/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="tr">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>Durum</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="zh-cn">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>状态</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
60
root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/sogo
Normal file
60
root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/sogo
Normal file
@@ -0,0 +1,60 @@
|
||||
<lexicon lang="zh-tw">
|
||||
<entry>
|
||||
<base>Groupware</base>
|
||||
<trans>Sogo Groupware</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Settings of SOGo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS_DESC</base>
|
||||
<trans>You can desactivate the service</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>STATUS</base>
|
||||
<trans>狀態</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL_DESC</base>
|
||||
<trans>When a user gives rights (on a calendar or address book), SOGo can automatically prevent those concerned that new data are available, by sending them an email. Do you want to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_ACL_MAIL</base>
|
||||
<trans>Notification of changes in access rights</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS_DESC</base>
|
||||
<trans>If this feature is enabled, users can subscribe to external IMAP accounts. They will be able to manage all their email accounts from the web interface. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>AUX_ACCOUNTS</base>
|
||||
<trans>External Accounts</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can publicly share some resources (no authentication). Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>PUBLIC_ACCESS</base>
|
||||
<trans>Public access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS_DESC</base>
|
||||
<trans>If this feature is enabled, users can use the active-sync service. Would you like to enable this feature?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>ACTIVE_SYNC_ACCESS</base>
|
||||
<trans>Active Sync</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>SEND_APPOINTEMENT_EMAIL_ALARM_DESC</base>
|
||||
<trans>If this feature is enabled, users can receive alarms via email before their appointments noted in the agenda. Would you like to activate this feature ?</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SEND_EMAIL_ALARM</base>
|
||||
<trans>Email alerts before appointment</trans>
|
||||
</entry>
|
||||
|
||||
</lexicon>
|
@@ -0,0 +1 @@
|
||||
PERMS=0540
|
@@ -0,0 +1 @@
|
||||
PERMS=0540
|
@@ -0,0 +1 @@
|
||||
PERMS=0540
|
@@ -0,0 +1 @@
|
||||
PERMS=0540
|
3
root/etc/e-smith/templates.metadata/etc/sogo/sieve.creds
Normal file
3
root/etc/e-smith/templates.metadata/etc/sogo/sieve.creds
Normal file
@@ -0,0 +1,3 @@
|
||||
UID="root"
|
||||
GID="sogo"
|
||||
PERMS=0640
|
3
root/etc/e-smith/templates.metadata/etc/sogo/sogo.conf
Normal file
3
root/etc/e-smith/templates.metadata/etc/sogo/sogo.conf
Normal file
@@ -0,0 +1,3 @@
|
||||
UID="root"
|
||||
GID="sogo"
|
||||
PERMS=0640
|
22
root/etc/e-smith/templates/etc/cron.d/sogo/10base
Normal file
22
root/etc/e-smith/templates/etc/cron.d/sogo/10base
Normal file
@@ -0,0 +1,22 @@
|
||||
# Sogod cronjobs
|
||||
|
||||
# Vacation messages expiration
|
||||
# The credentials file should contain the sieve admin credentials (username:passwd)
|
||||
0 0 * * * sogo /usr/sbin/sogo-tool update-autoreply -p /etc/sogo/sieve.creds
|
||||
|
||||
# Session cleanup - runs every minute
|
||||
# - Ajust the nbMinutes parameter to suit your needs
|
||||
# Example: Sessions without activity since 60 minutes will be dropped:
|
||||
#* * * * * sogo /usr/sbin/sogo-tool expire-sessions 60
|
||||
|
||||
# Email alarms - runs every minutes
|
||||
# If you need to use SMTP AUTH for outgoing mails, specify credentials to use
|
||||
# with '-p /path/to/credentialsFile' (same format as the sieve credentials)
|
||||
* * * * * sogo /usr/sbin/sogo-ealarms-notify > /dev/null 2>&1
|
||||
|
||||
# Daily backups
|
||||
# - writes to ~sogo/backups/ by default
|
||||
# - will keep 31 days worth of backups by default
|
||||
# - runs once a day by default, but can run more frequently
|
||||
# - make sure to set the path to sogo-backup.sh correctly
|
||||
#30 0 * * * sogo /usr/share/doc/sogo/sogo-backup.sh
|
@@ -0,0 +1,7 @@
|
||||
#
|
||||
# Increase maximum IMAP command line length
|
||||
#
|
||||
# Maximum IMAP command line length in bytes. Some clients generate very long
|
||||
# command lines with huge mailboxes, so you may need to raise this if you get
|
||||
# "Too long argument" or "IMAP command line too large" errors often.
|
||||
imap_max_line_length = {${'dovecot'}{'ImapMaxLineLenght'} || '2048'}k
|
@@ -0,0 +1 @@
|
||||
sogo
|
@@ -0,0 +1,3 @@
|
||||
#! /bin/sh
|
||||
|
||||
exec mysql < /var/lib/sogo/smeserver/sogo_mysql_create_database.sql
|
@@ -0,0 +1,3 @@
|
||||
#! /bin/sh
|
||||
|
||||
exec mysql < /var/lib/sogo/smeserver/sogo_mysql_update_privileges.sql
|
@@ -0,0 +1,3 @@
|
||||
#! /bin/sh
|
||||
|
||||
exec /etc/e-smith/events/actions/sogo_upgrade
|
@@ -0,0 +1,4 @@
|
||||
#! /bin/sh
|
||||
|
||||
exec /etc/e-smith/events/actions/sogo_upgrade_2.3
|
||||
|
@@ -0,0 +1,15 @@
|
||||
{
|
||||
|
||||
my $applePort = ${'apple-carddav'}{'TCPPort'} || "8843";
|
||||
my $sogoStatus = $sogod{'status'} || "enabled";
|
||||
my $appleStatus = ${'apple-carddav'}{'status'} || "enabled";
|
||||
|
||||
if (($sogoStatus eq 'enabled') && ($appleStatus eq 'enabled')){
|
||||
$OUT .=<<"EOF";
|
||||
|
||||
Listen 0.0.0.0:$applePort
|
||||
|
||||
EOF
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,15 @@
|
||||
{
|
||||
|
||||
my $applePort = ${'apple-carddav'}{'TCPPort'} || "8843";
|
||||
my $sogoStatus = $sogod{'status'} || "enabled";
|
||||
my $appleStatus = ${'apple-carddav'}{'status'} || "enabled";
|
||||
|
||||
if (($sogoStatus eq 'enabled') && ($appleStatus eq 'enabled')){
|
||||
$OUT .=<<"EOF";
|
||||
|
||||
NameVirtualHost 0.0.0.0:$applePort
|
||||
|
||||
EOF
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,72 @@
|
||||
# SOGo Groupware
|
||||
{
|
||||
$sogoStatus = $sogod{'status'} || "disabled";
|
||||
$webmailStatus = $imp{'status'} || "disabled";
|
||||
$activeSync = $sogod{'ActiveSync'} || 'disabled';
|
||||
$OUT = "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
SetEnvIf Host (.*) REQUEST_HOST=$1
|
||||
ProxyPass /SOGo http://127.0.0.1:{$sogod{'TCPPort'}}/SOGo
|
||||
ProxyPassReverse /SOGo http://127.0.0.1:{$sogod{'TCPPort'}}/SOGo
|
||||
|
||||
# iOS auto discovery
|
||||
RedirectMatch ^/principals/users/(.*)$ /SOGo/dav/$1
|
||||
RedirectMatch ^/principals/$ /SOGo/dav/
|
||||
RedirectMatch ^/.well-known/(caldav|carddav)$ /SOGo/dav/
|
||||
|
||||
{
|
||||
if ($activeSync =~ m/^enabled|on|1|yes$/i){
|
||||
$OUT .=<<"HERE";
|
||||
ProxyPass /Microsoft-Server-ActiveSync http://127.0.0.1:$sogod{'TCPPort'}/SOGo/Microsoft-Server-ActiveSync retry=60 connectiontimeout=5 timeout=3600
|
||||
HERE
|
||||
}
|
||||
else {
|
||||
$OUT .= "# ActiveSync is disabled\n";
|
||||
}
|
||||
}
|
||||
|
||||
<Location /SOGo>
|
||||
# order deny,allow
|
||||
# deny from all
|
||||
# allow from all
|
||||
Require all granted
|
||||
SSLRequireSSL on
|
||||
AddDefaultCharset UTF-8
|
||||
RequestHeader set "x-webobjects-server-url" "https://%\{REQUEST_HOST\}e/SOGo"
|
||||
</Location>
|
||||
|
||||
{
|
||||
use Config;
|
||||
my $arch = $Config{selectminbits};
|
||||
|
||||
if ($arch eq "32"){
|
||||
$OUT .= qq(
|
||||
Alias /.woa/WebServerResources/ /usr/lib/GNUstep/SOGo/WebServerResources/
|
||||
Alias /SOGo.woa/WebServerResources/ /usr/lib/GNUstep/SOGo/WebServerResources/
|
||||
Alias /SOGo/WebServerResources/ /usr/lib/GNUstep/SOGo/WebServerResources/
|
||||
AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) /usr/lib/GNUstep/SOGo/\$1.SOGo/Resources/\$2\
|
||||
|
||||
<Directory "/usr/lib/GNUstep/SOGo/">
|
||||
);}
|
||||
|
||||
elsif ($arch eq "64"){
|
||||
$OUT .= qq(
|
||||
Alias /.woa/WebServerResources/ /usr/lib64/GNUstep/SOGo/WebServerResources/
|
||||
Alias /SOGo.woa/WebServerResources/ /usr/lib64/GNUstep/SOGo/WebServerResources/
|
||||
Alias /SOGo/WebServerResources/ /usr/lib64/GNUstep/SOGo/WebServerResources/
|
||||
AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) /usr/lib64/GNUstep/SOGo/\$1.SOGo/Resources\$2
|
||||
|
||||
<Directory "/usr/lib64/GNUstep/SOGo/">
|
||||
);}
|
||||
}
|
||||
|
||||
AllowOverride None
|
||||
Options +ExecCGI -Includes
|
||||
# Order allow,deny
|
||||
# Allow from all
|
||||
Require all granted
|
||||
</Directory>
|
||||
|
@@ -0,0 +1,43 @@
|
||||
{
|
||||
|
||||
my $sogoPort = $sogod{'TCPPort'} || "20000";
|
||||
my $applePort = ${'apple-carddav'}{'TCPPort'} || "8843";
|
||||
my $sogoStatus = $sogod{'status'} || "enabled";
|
||||
my $appleStatus = ${'apple-carddav'}{'status'} || "enabled";
|
||||
|
||||
if (($sogoStatus eq 'enabled') && ($appleStatus eq 'enabled')){
|
||||
$OUT .=<<"EOF";
|
||||
|
||||
<VirtualHost 0.0.0.0:$applePort>
|
||||
ServerName $SystemName.$DomainName
|
||||
SSLEngine On
|
||||
ProxyRequests Off
|
||||
SetEnv proxy-nokeepalive 1
|
||||
ProxyPreserveHost On
|
||||
ProxyPassInterpolateEnv On
|
||||
RewriteEngine On
|
||||
RedirectMatch ^/principals/users/(.*)\$ /\$1
|
||||
RedirectMatch ^/principals/\$ /
|
||||
RedirectMatch ^/.well-known/(caldav|carddav)\$ /
|
||||
RewriteRule /SOGo/dav(.*) /\$1 [L,R]
|
||||
ProxyPass / http://127.0.0.1:$sogoPort/SOGo/dav/ interpolate
|
||||
|
||||
<Proxy http://127.0.0.1:$sogoPort>
|
||||
RequestHeader set "x-webobjects-server-port" "$applePort"
|
||||
RequestHeader set "x-webobjects-server-name" "$SystemName.$DomainName:$applePort"
|
||||
RequestHeader set "x-webobjects-server-url" "https://$SystemName.$DomainName:$applePort"
|
||||
RequestHeader set "x-webobjects-server-protocol" "HTTP/1.0"
|
||||
RequestHeader set "x-webobjects-remote-host" "127.0.0.1"
|
||||
AddDefaultCharset UTF-8
|
||||
# Order allow,deny
|
||||
# Allow from all
|
||||
Require all granted
|
||||
</Proxy>
|
||||
</VirtualHost>
|
||||
|
||||
EOF
|
||||
}
|
||||
else{
|
||||
$OUT .= "";
|
||||
}
|
||||
}
|
@@ -0,0 +1,20 @@
|
||||
{
|
||||
my $sslport = $modSSL{'TCPPort'} || '443';
|
||||
|
||||
if ($port ne $sslport){
|
||||
|
||||
## Redirect Web Address to Secure Address
|
||||
$OUT .= " RewriteEngine on\n";
|
||||
$OUT .= " RewriteRule ^/SOGo(/.*|\$) https://%{HTTP_HOST}/SOGo\$1 \[L,R\]\n";
|
||||
|
||||
}
|
||||
$OUT .= " RewriteRule ^/sogo(/.*|\$) https://%{HTTP_HOST}/SOGo\$1 \[L,R\]\n";
|
||||
|
||||
$sogoStatus = $sogod{'status'} || "disabled";
|
||||
$webmailStatus = $imp{'status'} || "disabled";
|
||||
|
||||
if (($webmailStatus eq 'disabled') and ($sogoStatus eq 'enabled')) {
|
||||
$OUT .= " RewriteRule ^/webmail(/.*|\$) https://%{HTTP_HOST}/SOGo\$1 \[L,R\]\n";
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
/var/log/sogo/*.log \{
|
||||
missingok
|
||||
rotate 5
|
||||
notifempty
|
||||
copytruncate
|
||||
\}
|
4
root/etc/e-smith/templates/etc/sogo/sieve.creds/10base
Normal file
4
root/etc/e-smith/templates/etc/sogo/sieve.creds/10base
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
my $pwd = esmith::util::LdapPassword ();
|
||||
$OUT.="sogo:$pwd";
|
||||
}
|
1
root/etc/e-smith/templates/etc/sogo/sogo.conf/01start
Normal file
1
root/etc/e-smith/templates/etc/sogo/sogo.conf/01start
Normal file
@@ -0,0 +1 @@
|
||||
\{
|
4
root/etc/e-smith/templates/etc/sogo/sogo.conf/10mysql
Normal file
4
root/etc/e-smith/templates/etc/sogo/sogo.conf/10mysql
Normal file
@@ -0,0 +1,4 @@
|
||||
OCSFolderInfoURL = "mysql://sogo:{$sogod{'DbPassword'}}@localhost/sogo/sogo_folder_info";
|
||||
OCSSessionsFolderURL = "mysql://sogo:{$sogod{'DbPassword'}}@localhost/sogo/sogo_sessions_folder";
|
||||
SOGoProfileURL = "mysql://sogo:{$sogod{'DbPassword'}}@localhost/sogo/sogo_user_profile";
|
||||
OCSEMailAlarmsFolderURL = "mysql://sogo:{$sogod{'DbPassword'}}@localhost/sogo/sogo_alarms_folder";
|
@@ -0,0 +1,2 @@
|
||||
SOGoMemcachedHost = 127.0.0.1;
|
||||
SOGoCacheCleanupInterval = 1800;
|
13
root/etc/e-smith/templates/etc/sogo/sogo.conf/20email
Normal file
13
root/etc/e-smith/templates/etc/sogo/sogo.conf/20email
Normal file
@@ -0,0 +1,13 @@
|
||||
SOGoMailSpoolPath = "/var/spool/sogo";
|
||||
SOGoIMAPServer = "imap://localhost:{$imap{'TCPPort'} || '143'}";
|
||||
SOGoMailDomain = {$DomainName};
|
||||
SOGoMailingMechanism = smtp;
|
||||
SOGoSMTPServer = localhost;
|
||||
SOGoMailListViewColumnsOrder = (
|
||||
Flagged, Attachment, Subject, From, Unread, Date, Size
|
||||
);
|
||||
SOGoTrashFolderName = {($sogod{'TrashFolder'} || "Trash")};
|
||||
SOGoDraftsFolderName = {($sogod{'DraftsFolder'} || "Drafts")};
|
||||
SOGoSentFolderName = {($sogod{'SentFolder'} || "Sent")};
|
||||
SOGoJunkFolderName = "{$dovecot{SpamFolder} || "Junk"}";
|
||||
SOGoMailCustomFromEnabled = YES;
|
@@ -0,0 +1,6 @@
|
||||
SOGoACLsSendEMailNotifications = {uc($sogod{'ACLsSendEMailNotifications'} || "NO")};
|
||||
SOGoAppointmentSendEMailNotifications = YES;
|
||||
SOGoAppointmentSendEMailReceipts = YES;
|
||||
SOGoEnableEMailAlarms = {($sogod{'EnableEMailAlarms'} || "NO")};
|
||||
SOGoAuthenticationMethod = LDAP;
|
||||
SOGoFoldersSendEMailNotifications = NO;
|
@@ -0,0 +1,5 @@
|
||||
SOGoRefreshViewCheck = "every_10_minutes";
|
||||
SOGoFirstDayOfWeek = "1";
|
||||
SOGoFirstWeekOfYear = "First4DayWeek";
|
||||
SOGoCalendarDefaultReminder = "-PT15M";
|
||||
|
@@ -0,0 +1,2 @@
|
||||
SOGoMailAuxiliaryUserAccountsEnabled = {uc($sogod{'MailAuxiliaryUserAccountsEnabled'} || "YES")};
|
||||
SOGoEnablePublicAccess = {uc($sogod{'PublicAccess'} || "NO")};
|
12
root/etc/e-smith/templates/etc/sogo/sogo.conf/40Sieve
Normal file
12
root/etc/e-smith/templates/etc/sogo/sogo.conf/40Sieve
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
if (($sieve{'status'} || 'disabled') eq 'enabled'){
|
||||
my $sieveport = $sieve{'TCPPort'} || '4190';
|
||||
$OUT .=<<"HERE";
|
||||
SOGoSieveServer = "sieve://localhost:$sieveport";
|
||||
SOGoVacationEnabled = YES;
|
||||
SOGoForwardEnabled = YES;
|
||||
SOGoSieveScriptsEnabled = YES;
|
||||
NGImap4ConnectionStringSeparator = ".";
|
||||
HERE
|
||||
}
|
||||
}
|
3
root/etc/e-smith/templates/etc/sogo/sogo.conf/45Admins
Normal file
3
root/etc/e-smith/templates/etc/sogo/sogo.conf/45Admins
Normal file
@@ -0,0 +1,3 @@
|
||||
SOGoSuperUsernames = (
|
||||
{($sogod{'AdminUsers'} || 'admin')}
|
||||
);
|
1
root/etc/e-smith/templates/etc/sogo/sogo.conf/50TimeZone
Normal file
1
root/etc/e-smith/templates/etc/sogo/sogo.conf/50TimeZone
Normal file
@@ -0,0 +1 @@
|
||||
SOGoTimeZone = {$TimeZone};
|
@@ -0,0 +1,31 @@
|
||||
SOGoUserSources = (
|
||||
|
||||
\{
|
||||
CNFieldName = cn;
|
||||
IDFieldName = uid;
|
||||
UIDFieldName = uid;
|
||||
baseDN = "ou=Users,{ esmith::util::ldapBase($DomainName); }";
|
||||
bindFields = (uid);
|
||||
canAuthenticate = YES;
|
||||
displayName = "Users";
|
||||
hostname = localhost;
|
||||
id = users;
|
||||
isAddressBook = YES;
|
||||
port = {$sogod{'LdapTCPPort'} || '389'};
|
||||
type = ldap;
|
||||
\},
|
||||
\{
|
||||
CNFieldName = cn;
|
||||
IDFieldName = cn;
|
||||
UIDFieldName = cn;
|
||||
baseDN = "ou=Groups,{ esmith::util::ldapBase($DomainName); }";
|
||||
bindFields = (cn);
|
||||
canAuthenticate = YES;
|
||||
displayName = "Groups";
|
||||
hostname = localhost;
|
||||
id = groups;
|
||||
isAddressBook = YES;
|
||||
port = {$sogod{'LdapTCPPort'} || '389'};
|
||||
type = ldap;
|
||||
\}
|
||||
);
|
11
root/etc/e-smith/templates/etc/sogo/sogo.conf/60ActiveSync
Normal file
11
root/etc/e-smith/templates/etc/sogo/sogo.conf/60ActiveSync
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
|
||||
/* 70 Active Sync options and tuning */
|
||||
SOGoMaximumPingInterval = {$sogod{'SOGoMaximumPingInterval'} || '3540'};
|
||||
SOGoMaximumSyncInterval = {$sogod{'SOGoMaximumSyncInterval'} || '3540'};
|
||||
SOGoInternalSyncInterval = {$sogod{'SOGoInternalSyncInterval'} || '60'};
|
||||
SOGoMaximumSyncResponseSize = {$sogod{'SOGoMaximumSyncResponseSize'} || '2048'};
|
||||
SOGoMaximumSyncWindowSize = {$sogod{'SOGoMaximumSyncWindowSize'} || '100'};
|
||||
|
||||
WOWorkersCount = {$sogod{WOWorkersCount} || "10"};
|
||||
WOWatchDogRequestTimeout = {$sogod{'WOWatchDogRequestTimeout'} || '3600'};
|
6
root/etc/e-smith/templates/etc/sogo/sogo.conf/70Various
Normal file
6
root/etc/e-smith/templates/etc/sogo/sogo.conf/70Various
Normal file
@@ -0,0 +1,6 @@
|
||||
NGUseUTF8AsURLEncoding = YES;
|
||||
WOMessageUseUTF8 = YES;
|
||||
WOParsersUseUTF8 = YES;
|
||||
WOPort = 127.0.0.1:{$sogod{'TCPPort'}};
|
||||
WOUseRelativeURLs = YES;
|
||||
SxVMemLimit = {$sogod{'SxVMemLimit'} || '384'};
|
@@ -0,0 +1,5 @@
|
||||
/*
|
||||
{
|
||||
$OUT = Text::Template::_load_text("/etc/e-smith/templates-default/template-begin");
|
||||
$OUT =~ s/^#/ * /gm
|
||||
} */
|
@@ -0,0 +1 @@
|
||||
\}
|
6
root/etc/e-smith/templates/etc/sysconfig/memcached/all
Normal file
6
root/etc/e-smith/templates/etc/sysconfig/memcached/all
Normal file
@@ -0,0 +1,6 @@
|
||||
PORT="{($memcached{'TCPPort'} || '11211')}"
|
||||
USER="nobody"
|
||||
MAXCONN="1024"
|
||||
CACHESIZE="64"
|
||||
OPTIONS="-l 127.0.0.1"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user