Search results

  1. interfasys

    Specify license in scripts

    I think there isn't a single DA script which includes a header indicating the license under which these scripts are released. This makes it impossible to re-use things like daemons or utility scripts in other projects. Could we please either have a general statement that everything is released...
  2. interfasys

    Wrong group used for chmod in letsencrypt script

    Setting up cert for WWW server... chown: root: illegal group name Setting up cert for FTP server... chown: root: illegal group name The script should either add exceptions or automatically get the group from a known good source.
  3. interfasys

    [FR] Make session.save_path an option

    The path for session.save_path is hardcoded into a PHP ini file, but some of us prefer to use a memcache solution for performance and security reasons, so it would be great if we would specify that path in options.conf or have that ini file in config, so that we can create a customised version...
  4. interfasys

    webapps open_basedir value should work out of the box when uncommenting

    This is in custombuild/configure/fpm/conf/php-fpm.conf.55 ;php_admin_value[open_basedir] = /tmp:/var/tmp:/var/www/html:/usr/local/php55/lib/php This is in build APP_TMP=/var/www/tmp Apps which need to upload files via PHP will fail if one just uncomments that open_basedir line in...
  5. interfasys

    Need to switch to doveadm for email quota calculation

    The current method used by Directadmin to calculate email quota leads to wrong results on compressed filesystems such as ZFS. A mailbox may contain messages totalling 100MB according to Dovecot which uses the message size to calculate it, but they will only take 60MB of disk space. I suggest...
  6. interfasys

    [Doc] wrong permission for SSL key

    http://help.directadmin.com/item.php?id=245 chmod 644 /etc/exim.key
  7. interfasys

    Script to track CB changes

    If you're like me, you've made some modifications to disable unwanted features or to patch some apps so that they behave the way you want to. You probably also has lots of custom config files. Tracking changes in CB is a pain, if not impossible. We learn about new features if we track this...
  8. interfasys

    [bug] CB wants to install version 0 from custom_versions.txt

    When trying to install PHP I get Downloading icu4c-0-src.tgz... This is because of this if [ "${OS}" = "FreeBSD" ]; then if [ ${MAINVER} -ge 10 ]; then if [ ! -e /usr/local/lib/libicui18n.so ]; then removeLockfile; doICU; fi else if [ ! -d /usr/local/icu/lib ]...
  9. interfasys

    New removal feature

    I'm not sure how far you want to take the feature, but I think it would be good if it was designed to ignore apps in custom_versions.txt
  10. interfasys

    [Bug] Wrong template diff links

    I think the template diff idea is great, but it doesn't work properly http://www.directadmin.com/features.php?id=1669 Only the first 2 links or correct, any link after that is using the 2nd URL.
  11. interfasys

    Time to drop SSLv3 drom DA

    http://googleonlinesecurity.blogspot.nl/2014/10/this-poodle-bites-exploiting-ssl-30.html SSLv3 has to be disabled today from the web server and that's easy enough to do. Next steps are to get rid of it completely asap. It's easy to get rid of SSLv3 on FreeBSD, compiling OpenSSL ourselves, not...
  12. interfasys

    Conflict between suhosin and roundcube

    From the logs ALERT - script tried to disable memory_limit by setting it to a negative value -1 bytes which is not allowed (attacker 'REMOTE_ADDR not set', file '/var/www/html/roundcubemail-1.0.3/bin/indexcontacts.sh', line 25) The sushosin config in the .ini file should perhaps add an...
  13. interfasys

    [FR] MX records access for resellers, even when DNS control is off

    Just like resellers can have access to the DNS manager even for users which don't have the feature enabled, I think it would be good if they could have access to the MX records page. The currently get the following error message
  14. interfasys

    [FR] Domain dropdown to quickly switch domain

    As soon as you have more than one domain, it's a bit of a pain to switch between them. It would be great to have a domain dropdown either in the header or in the right column, as a replacement for the "current domain" section.
  15. interfasys

    [Roundcube] Don't overwite our custom configs!

    CB completely messes up a custom config.inc.php Custom settings were added at the end of the initially generated config and CB ends up duplicating some custom and some of its own settings It looks something like this $config['smtp_auth_type'] = 'LOGIN'; $config['create_default_folders'] =...
  16. interfasys

    Package, change skin, no language update

    Steps Install a new skin Edit package Select new skin Use the language selector Actual result The language selector only shows the languages available for the previously selected skin Expected result The language selector should show the languages available for the currently selected skin...
  17. interfasys

    PHP-FPM, PHP duplicates header instead of replacing it

    There is a header problem which is affecting PHP applications. Before I report it upstream, I want to make sure it's not due to the way CB does things. Apache inserts a Strict-Transport-Security header and some PHP apps add headers via lines like this header('Strict-Transport-Security...
  18. interfasys

    HTM_ADD_DOMAIN always shows "CGI Access"

    This bug must be at least 10 years old. Using the enhanced skin. Admin disables CGI for reseller. Reseller creates package which doesn't include CGI. User always sees "CGI Access" with the box ticked. It doesn't matter if it says (Ignored if not allowed) next to it, it should never be there in...
  19. interfasys

    Don't restart Apache if the configtest fails

    When editing custom httpd configs, we may make a mistake and it's great that DA reports what's wrong on the same page, but what's not so great is that it still applies the changes and restarts Apache. Bringing down all the sites at once.
  20. interfasys

    Documentation errors

    I thought there was already a thread like this, but I can't find it. Let's list pages on help.directadmin.com wich contain out of date or erroneous information. I'll start with: http://help.directadmin.com/item.php?id=91 The template used on the page does not match what's installed today. The...
Back
Top