[contribteam] [Bug 10678] Old GeoIP update fragment is left in /etc/crontab

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10678

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|CONFIRMED   |CLOSED
 CC||te...@pialasse.com
 Resolution|--- |NOTABUG

--- Comment #1 from Jean-Philippe Pialasse  ---
/etc/e-smith/templates/etc/crontab/91_Update_Geoip_db
/etc/e-smith/templates-custom/etc/crontab/91_Update_GeoIP_db

the issue is rather with a template-custom vs a template


i see in 1.1.2:
/etc/e-smith/templates/etc/crontab/91_Update_Geoip_db

and in 1.2
/etc/e-smith/templates/etc/crontab/91_Update_Geoip_db

so not a bug but rather user having issue with its custom template.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10691] split smeserver-geoip into smeservergeoip and smeserver-geoip2 for compatibility

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10691

--- Comment #2 from Jean-Philippe Pialasse  ---
ok so trying:

# $self->load_geoip1() and return 1;
$self->load_geoip2() and return 1;

@40005c303f36116d28a4 8411 check_badcountries: could not load GeoIP2
@40005c303f391aaea294 8411 (connect) earlytalker: pass, not spontaneous
@40005c303f391aaeaa64 8411 (connect) relay: skip, no match
@40005c303f3920a7a074 8411 (connect) dnsbl: pass



$self->load_geoip2() and return 1;
$self->load_geoip1() and return 1;

@40005c303f97033075ac 8675 check_badcountries: could not load GeoIP2
@40005c303f9a11a0d71c 8675 (connect) earlytalker: pass, not spontaneous
@40005c303f9a11a17f14 8675 (connect) relay: skip, no match
@40005c303f9a11af6994 8675 FATAL PLUGIN ERROR [check_badcountries]:  Can't
locate object method "name_by_addr" via package "Geo::IP" at
/usr/share/qpsmtpd/plugins/check_badcountries line 481.
@40005c303f9a186dc6cc 8675 (connect) dnsbl: pass

so here a fix :
return if ! $self->{GeoIPASNum};
-
+return if ! $self->{GeoIPASNum}->can('name_by_addr');
my $asn = $self->{GeoIPASNum}->name_by_addr($ip) or return;

@40005c3042100e3ecffc 10093 check_badcountries: could not load GeoIP2
@40005c3042131797f484 10093 (connect) earlytalker: pass, not spontaneous
@40005c3042131797fc54 10093 (connect) relay: skip, no match
@40005c3042131798003c 10093 (connect) check_badcountries: FR


as a resumé we can use the new plugin both with v1 and v2, all we need is to
make 2 modifications.
maybe 3 if we refer to  https://bugs.contribs.org/show_bug.cgi?id=10679 in
order to keep same loglevel to get all informations we want.


I would say that of the two steps to verify  one is ok (just need to patch),
the plugin works for both versions. It will only generate a log to says that
geoip2 is not available.

need to wait repo to update and test the update process

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10691] split smeserver-geoip into smeservergeoip and smeserver-geoip2 for compatibility

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10691

--- Comment #3 from Jean-Philippe Pialasse  ---
by the way my fix could maybe test also for existence of 


$org = $gi->org_by_addr( $ipaddr ); deprecated use name_by_addr instead.

Returns the Organization, ISP name or Domain Name for an IP address.
maybe related to too old version available.

https://github.com/maxmind/geoip-api-perl

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10691] split smeserver-geoip into smeservergeoip and smeserver-geoip2 for compatibility

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10691

Bug ID: 10691
   Summary: split smeserver-geoip into smeservergeoip and
smeserver-geoip2 for compatibility
Classification: Contribs
   Product: SME Contribs
   Version: 9.2
  Hardware: ---
OS: ---
Status: CONFIRMED
  Severity: normal
  Priority: P3
 Component: smeserver-geoip
  Assignee: contribteam@lists.contribs.org
  Reporter: te...@pialasse.com
QA Contact: contribteam@lists.contribs.org
  Target Milestone: ---

split smeserver-geoip into smeservergeoip and smeserver-geoip2 for
compatibility

the issue with just updating smeserver-geoip to require geoip2 is that it will
prevent yum to complete an update if smecontribs is enabled until the user is
able to understand and what is happening and take an action :

- either exclude smeserver-geoip if one does not want the update
db yum_repositories setprop smecontribs Exclude smeserver-geoip
signal-even yum-modify



- either configure everything to allow update to geoip2 


see:  https://wiki.contribs.org/GeoIP#Updating_with_v1_DBs_installed
https://wiki.contribs.org/GeoIP


the purpose of this bug is to separate the rpm in two packages :
smeserver-geoip which will continue to keep the old version without trying to
update anymore

smeserver-geoip2 that will be the new rpm with enhanced functions and up to
date  free geo db.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10691] split smeserver-geoip into smeservergeoip and smeserver-geoip2 for compatibility

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10691

--- Comment #1 from Jean-Philippe Pialasse  ---
/usr/bin/plague-client build smeserver-geoip smeserver-geoip-1_2-4_el6_sme
contribs9
Package smeserver-geoip enqueued.  Job ID: 2018.

%changelog
* Fri Jan 04 2019 Jean-Philipe Pialasse  1.2-4.sme
- split smeserver-geoip into smeservergeoip and smeserver-geoip2 for
compatibility [SME: 10691]
- workaround to find for plugin compatibility



this is a first step:

3 rpms will be created :
smeserver-geoip2 : as the last production of John
smeserver-geoip1 : should be same as smeserver-geoip
smeserver-geoip : should be as close as possible as v1.1.2, except it has the
plugin introduced by John, geoip update action should have been removed and
cron should have been removed


next step is to test the yum update process and to try to fix the plugin so it
seek for v2 and default to v1 if unavailable. Currently v1 has just been
commented out.

# $self->load_geoip1() and return 1;
$self->load_geoip2() and return 1;

should rather become


$self->load_geoip2() and return 1;
$self->load_geoip1() and return 1;

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10569] /etc/e-smith/templates/etc/mediatomb/config.xml/25autoscanDir1 issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10569

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED

--- Comment #3 from Jean-Philippe Pialasse  ---
released

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10685] Updating GeoIP tried to update mod_perl from openfusion

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10685

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 CC||te...@pialasse.com
 Resolution|--- |FIXED

--- Comment #3 from Jean-Philippe Pialasse  ---
+* Fri Jan 04 2019 Jean-Philipe Pialasse  0.1-19.sme
+- improve zmrepo migrate fragment to avoid action if not needed.
+- migrate fragment for openfusion

this should have refined the hard work from John. I have just added a migrate
fragment to be sure everything is correct

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10679] Default loglevel of updated rpm is set to low

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10679

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 CC||te...@pialasse.com

--- Comment #1 from Jean-Philippe Pialasse  ---
previous plugin was using this :
$self->log(LOGNOTICE, "GeoIP Country: $country");
$self->log(LOGINFO, "Country $country RemoteIP $remoteIP");

$self->log(LOGINFO, "Country $country Pattern $pattern Whitehost $whitelisthost
RemoteIP $remoteIP");
$self->log(LOGINFO, "Geoip whitelisthost found $whitelisthost");



new plugin is using: 


$self->log(LOGINFO, "Information: City NA RemoteIP $ip");
$self->log(LOGINFO, "Information: City $city RemoteIP $ip");

$self->log(LOGINFO, "Country $country RemoteIP $ip");

loginfo needs loglevel 6
lognotice 5

see the country is now loginfo

could be an upstream change  to

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10568] wrong path to action script

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10568

--- Comment #11 from Terry Fage  ---
oops, wrong bug

As fpr this one mediatomb install without error as per comment 9 

Verified

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10688] Incorrect CA Setting in config when enabled

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10688

--- Comment #4 from John Crisp  ---
This is in smetest now.

Please let us know if it works correctly now thanks.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10595] smeserver-letsencrypt update to handle v2 API

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10595

John Crisp  changed:

   What|Removed |Added

   Attachment #6144|0   |1
is obsolete||

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10676] failed: Access denied for user 'zm'@'localhost'

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10676

Terry Fage  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #10 from Terry Fage  ---
Installs following wiki instructions, OK

Access management pages from https://192.168.2.92/zm/ login as admin - OK

Did not try the NFR

Can only go so far as do not have camera system or server to test further 

leaving verified

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10568] wrong path to action script

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10568

--- Comment #12 from Terry Fage  ---
[root@sme92x64 ~]# config setprop mediatomb access public
[root@sme92x64 ~]# config show mediatomb
mediatomb=service
DbName=mediatomb
DbPassword=NjczNzQ0MDkwMTcyNTE=
DbUser=mediatomb
Name=mediatomb
TCPPort=50500
UIpass=3PYxrM5fZ9+ceoff
UUID=b871cd62-1454-4c26-8003-4b83885a4051
access=public
status=enabled

http://192.168.2.92:50500/

Mediatomb management center available..

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10568] wrong path to action script

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10568

--- Comment #10 from Terry Fage  ---
Installs following wiki instructions, OK

Access management pages from https://192.168.2.92/zm/ login as admin - OK

Did not try the NFR

Can only go so far as do not have camera system or server to test further 

leaving verified

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10568] wrong path to action script

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10568

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED

--- Comment #13 from Jean-Philippe Pialasse  ---
closing released

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10539] import for SME9

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10539

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #7 from Jean-Philippe Pialasse  ---
closing this as ready to release.

NFRs have been added to the wiki page and might need individual bugs when
decided to work on.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10569] /etc/e-smith/templates/etc/mediatomb/config.xml/25autoscanDir1 issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10569

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Jean-Philippe Pialasse  ---
/usr/bin/plague-client build smeserver-mediatomb
smeserver-mediatomb-1_0-8_el6_sme contribs9
Package smeserver-mediatomb enqueued.  Job ID: 2010.

%changelog
* Fri Jan 04 2019 Jean-Philipe Pialasse  1.0-8.sme
- add dynamic template for autoscandir [SME: 10569]

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10676] failed: Access denied for user 'zm'@'localhost'

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10676

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED

--- Comment #11 from Jean-Philippe Pialasse  ---
closing and release

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10689] required rpm

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10689

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|CONFIRMED   |CLOSED
 Resolution|--- |FIXED

--- Comment #2 from Jean-Philippe Pialasse  ---
closing released

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10546] template issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10546

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|IN_PROGRESS |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Jean-Philippe Pialasse  ---
Jan  4 09:54:26 test75 esmith::event[4024]: ERROR: Could not expand
//etc/e-smith/templates/etc/mediatomb/config.xml template - it is a directory 
Jan  4 09:54:26 test75 esmith::event[4024]: ERROR: No templates were found for
/etc/e-smith/templates/etc/e-smith/sql/init/80mediatomb. 

with smeserver-mediatomb-1.0-6.el6.sme.noarch


should be fixed there :
/usr/bin/plague-client build smeserver-mediatomb
smeserver-mediatomb-1_0-7_el6_sme contribs9
Package smeserver-mediatomb enqueued.  Job ID: 2009.

%changelog
* Fri Jan 04 2019 Jean-Philipe Pialasse  1.0-7.sme
- fix wrong path to file to expand [SME: 10546]

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10546] template issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10546

Terry Fage  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #4 from Terry Fage  ---
[root@sme92x64 ~]# cd /etc/e-smith/templates/etc/e-smith/sql/init
[root@sme92x64 init]# ls
00_restore_dumped_dbs   30horde_mysql_create_tables  40mysql.create.turba  
   77horde_mysql_update_privs
10mysql_upgrade 31horde_upgrade  50turba_upgrade   
   78mysql.create.ingo
20mysql_migrate_horde   35imp_mysql_create_tables   
57turba_mysql_reset_addressbook_pref  79ingo_upgrade
21horde.mysql_set_password  36imp_upgrade60migrate-imp-to-turba
   80mediatomb


Verified

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10569] /etc/e-smith/templates/etc/mediatomb/config.xml/25autoscanDir1 issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10569

Terry Fage  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
 CC||tf...@yahoo.com.au

--- Comment #2 from Terry Fage  ---


  

Verified

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10546] template issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10546

--- Comment #5 from Jean-Philippe Pialasse  ---
/usr/bin/plague-client build smeserver-mediatomb
smeserver-mediatomb-1_0-9_el6_sme contribs9
Package smeserver-mediatomb enqueued.  Job ID: 2013.

%changelog
* Fri Jan 04 2019 Jean-Philipe Pialasse  1.0-9.sme
- add /etc/mediatomb [SME: 10546]

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10546] template issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10546

--- Comment #6 from Jean-Philippe Pialasse  ---
/usr/bin/plague-client build smeserver-mediatomb
smeserver-mediatomb-1_0-10_el6_sme contribs9
Package smeserver-mediatomb enqueued.  Job ID: 2014.

%changelog
* Fri Jan 04 2019 Jean-Philipe Pialasse  1.0-10.sme
- add /etc/mediatomb [SME: 10546]

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10546] template issue

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10546

Jean-Philippe Pialasse  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED

--- Comment #7 from Jean-Philippe Pialasse  ---
closing released

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

[contribteam] [Bug 10688] Incorrect CA Setting in config when enabled

2019-01-04 Thread bugzilla-daemon
https://bugs.contribs.org/show_bug.cgi?id=10688

--- Comment #5 from tim nash  ---
VERIFIED
After yum update smeserver-letsencrypt --enablerpeo=smetest
I did
config setprop letsencrypt etc to set status to test or enabled with API
undefined, 1 or 2
config show letsencrypt
expand-template /etc/dehydrated/config
cat /etc/dehydrated/config

With status test, with or without API=1, get acme-staging
With status test, with API=2, get acme-staging-v02
With status enabled, with or without API=1, get acme-v01
With status enabled, with API=2, get acme-v02

With status enabled, also get BASEDIR, CONTACT_EMAIL, HOOK and API values added
to config file.

As an aside, if status is set to disabled, immediately after test or enabled,
then expansion of the template will be as if enabled and with the relevant API
setting as above.

Also, setting API=0 will follow the above and give an API=1 result
Setting API to > 2 or to auto will follow the above and give an API=auto result

-- 
You are receiving this mail because:
You are the QA Contact for the bug.___
Mail for each SME Contribs bug report
To unsubscribe, e-mail contribteam-unsubscr...@lists.contribs.org
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/