5 Commits

Author SHA1 Message Date
359c7cd7ab * Wed Feb 12 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-11.sme
- fix typo in webmail settings for roundcube [SME: 12743]
2025-02-12 21:58:50 -05:00
847d2286d9 * Wed Jan 08 2025 Brian Read <brianr@koozali.org> 11.0.0-10.sme
- Update release due to finger trouble [SME: 12863]
2025-01-08 11:25:55 +00:00
bebfe041ee * Wed Jan 08 2025 Brian Read <brianr@koozali.org> 11.0.0-9.sme
- Revert change - reload should be in smeserver-postfix [SME: 12863]
2025-01-08 11:22:45 +00:00
b23ca94b0f Revert crealeinks to previous version 2025-01-08 09:46:17 +00:00
77e79e7b61 * Tue Jan 07 2025 Brian Read <brianr@koozali.org> 11.0.0-8.sme
- reload-or-restart postfix after pseudonym change [SME: 12863]
2025-01-07 16:09:01 +00:00
2 changed files with 19 additions and 7 deletions

View File

@@ -336,20 +336,20 @@ sub change_settings_access
$db->set_prop('php',"status", "enabled" );
$db->set_prop('mariadb',"status", "enabled" );
$db->set_prop('imp',"status", 'enabled' );
$cdb->set_prop('roundcube',"status", 'enabled' );
$cdb->set_prop('roundcube',"access", "public" );
$db->set_prop('roundcube',"status", 'enabled' );
$db->set_prop('roundcube',"access", "public" );
}
elsif ( $webmail eq "localnetworkSSL" || $webmail eq "localnetwork" ) {
$db->set_prop('php',"status", "enabled" );
$db->set_prop('mariadb',"status", "enabled" );
$db->set_prop('imp',"status", 'enabled' );
$cdb->set_prop('roundcube',"status", 'enabled' );
$cdb->set_prop('roundcube',"access", "private" );
$db->set_prop('roundcube',"status", 'enabled' );
$db->set_prop('roundcube',"access", "private" );
}
else {
$cdb->set_prop('roundcube',"status", 'disabled' );
$db->set_prop('roundcube',"status", 'disabled' );
}
unless ( system( "/sbin/e-smith/signal-event", "email-update" ) == 0 )
@@ -555,7 +555,7 @@ sub get_current_webmail_status {
# determine status of webmail
my $WebmailStatus = "disabled";
my $RoundcubeStatus = $cdb->get_prop('roundcube', 'status') || 'disabled';
my $RoundcubeStatus = $db->get_prop('roundcube', 'status') || 'disabled';
my $MysqlStatus = $db->get_prop('mariadb', 'status') || 'disabled';

View File

@@ -4,7 +4,7 @@ Summary: smeserver server and gateway - email module
%define name smeserver-email
Name: %{name}
%define version 11.0.0
%define release 7
%define release 11
Version: %{version}
Release: %{release}%{?dist}
License: GPL
@@ -76,6 +76,18 @@ fi
smeserver server and gateway software - email module.
%changelog
* Wed Feb 12 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-11.sme
- fix typo in webmail settings for roundcube [SME: 12743]
* Wed Jan 08 2025 Brian Read <brianr@koozali.org> 11.0.0-10.sme
- Update release due to finger trouble [SME: 12863]
* Wed Jan 08 2025 Brian Read <brianr@koozali.org> 11.0.0-9.sme
- Revert change - reload should be in smeserver-postfix [SME: 12863]
* Tue Jan 07 2025 Brian Read <brianr@koozali.org> 11.0.0-8.sme
- reload-or-restart postfix after pseudonym change [SME: 12863]
* Mon Dec 30 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-7.sme
- fix CGI::param called in list context [SME: 12789]
- update webmail settings for roundcube [SME: 12743]