inc/config-me.inc.php
changeset 82 c255196bc447
parent 76 0748816801b2
child 119 f74e4f88b680
equal deleted inserted replaced
81:c72d6d51f3d3 82:c255196bc447
    93 // Session timeout in seconds. This is 1800 seconds which is 30 minutes by default.
    93 // Session timeout in seconds. This is 1800 seconds which is 30 minutes by default.
    94 // The information in this field should be in seconds.
    94 // The information in this field should be in seconds.
    95 // After this $EXPIRE you are automatically logged out from the system.
    95 // After this $EXPIRE you are automatically logged out from the system.
    96 $EXPIRE = 1800;
    96 $EXPIRE = 1800;
    97 
    97 
    98 // $ALLOW_SOA_EDIT
       
    99 // Allow users with level 1 to edit/delete SOA records?
       
   100 $ALLOW_SOA_EDIT = 0;
       
   101 
       
   102 // $ALLOW_NS_EDIT
       
   103 // Allow users with level 1 to edit/delete pre-set NS records for their domain.
       
   104 $ALLOW_NS_EDIT = 1;
       
   105 
       
   106 // $DEFAULT_TTL
    98 // $DEFAULT_TTL
   107 // Default TTL for records.
    99 // Default TTL for records.
   108 // Default time to live for all records. This notation is in seconds.
   100 // Default time to live for all records. This notation is in seconds.
   109 $DEFAULT_TTL = 86400;      // (3600 seconds / 1 hour by default)
   101 $DEFAULT_TTL = 86400;      // (3600 seconds / 1 hour by default)
   110 
       
   111 
       
   112 // $NAME_LEVEL_X
       
   113 // These directives allow you to change the statusnames of users on the system.
       
   114 $NAME_LEVEL_1 = _('Normal user');
       
   115 $NAME_LEVEL_5 = _('Administrator');
       
   116 $NAME_LEVEL_10 = _('Administrator w/ user admin rights');
       
   117 
   102 
   118 // Enable fancy records or not (http://doc.powerdns.com/fancy-records.html)? true/false
   103 // Enable fancy records or not (http://doc.powerdns.com/fancy-records.html)? true/false
   119 $FANCY_RECORDS = true;
   104 $FANCY_RECORDS = true;
   120 
   105 
   121 
   106