Moderate Activity

News

  Analyzed 5 days ago based on code collected 5 days ago.
 
Posted about 15 hours ago by ehansen
Per thread here: ​http://forum.i-mscp.net/Thread-Disable-installation-of-some-services

Essentially, allow the user to not be forced to install services such as Postfix and others. For instance my use case is that my email services will be ... [More] offloaded to a third-party vendor, even for my own needs, so being forced to install a MTA just to make the CP happy is wasting system resources.

I'm not sure why "no" is not an option when it comes to choosing what to install. See ​https://github.com/i-MSCP/imscp/blob/master/engine/PerlLib/Servers/mta.pm for what I mean:

package Servers::mta;
use strict;
use warnings;
sub factory
{
my $self = shift;
my $server = shift || $main::imscpConfig{'MTA_SERVER'};
my ($file, $class);
if(lc($server) eq 'no') {
$file = 'Servers/noserver.pm';
$class = 'Servers::noserver';
} else {
$file = "Servers/mta/$server.pm";
$class = "Servers::mta::$server";
}
require $file;
$class->getInstance();
}
1;

I love this CP but I just feel being forced to install services that will only chew up resources is a big design flaw, especially when this can run on low-end VPSes. [Less]
Posted about 18 hours ago by Laurent Declercq
Mailman plugin: in progress (backend)
Posted about 18 hours ago by Laurent Declercq
Mailman plugin: in progress (backend)
Posted about 18 hours ago by Laurent Declercq
Small fixes + doc
Posted about 18 hours ago by mrpink
I installed the system with SSL and also used https as default access.

But when I open the base server url (in this case admin.my-imscp-domain.net) it will not redirect me to the https site. The same for pma, ftp and ... [More] webmail.

admin.my-imscp-domain.net
admin.my-imscp-domain.net/pma
admin.my-imscp-domain.net/ftp
admin.my-imscp-domain.net/webmail

When I create additional customers with their domains (e.g. customer.com) and you enter

customer.com/pma
customer.com/ftp
customer.com/webmail

you will be redirected to the https base server site.

So the https default access mode is only working for customer domains but not for the base server url. [Less]
Posted about 19 hours ago by mrpink
When you already have a running imscp system and start the imscp-autoinstall a second time with a preseed file this error message will be thrown:

[ ERROR ]
main::setupDefaultAdmin: Error while executing query: Duplicate entry ... [More] 'admin'
for key 'admin_name'
iMSCP::Debug::END: Exit code is 1!
[ ERROR ]
main::setupDefaultAdmin: Error while executing query: Duplicate entry 'admin'
for key 'admin_name'
iMSCP::Debug::END: Exit code is 1!

Calling the imscp-autoinstall a second time without the preseed file all is working fine. [Less]
Posted about 19 hours ago by Laurent Declercq
Fixed: Use of uninitialized value in string eq at
Posted about 19 hours ago by Laurent Declercq
Fixed: Useless use of hash element in void context...
Small fixes
Posted 1 day ago by gOOvER
It would be great when it would be possible to Upload i-MSCP Plugins via GUI.

Maybe for future versions, we can think about a Repro like Softwareinstaller.
Posted 1 day ago by Laurent Declercq
Mailman plugin: Implemented the onBeforePluginsRoute event + small fixes
 

 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.