Currently, when ffdn-db fails to fetch the isp.json file, it deactivates the automatic updates and sends an email to the technical contact of the ISP. This email is often disregarded or forgotten, and the ISP stays deactivated more or less forever.
It could be a good idea to send regular emails to the technical contact while the ISP is deactivated, for instance once a week.
Currently, when ffdn-db fails to fetch the isp.json file, it deactivates the automatic updates and sends an email to the technical contact of the ISP. This email is often disregarded or forgotten, and the ISP stays deactivated more or less forever.
It could be a good idea to send regular emails to the technical contact while the ISP is deactivated, for instance once a week.
And it seems that the setting is_disabled=1 doesn't works. (we have a lot of FAI with a update_error_strike=3 but the is_disabled=0).
sqlite> select name,update_error_strike from isp where is_disabled=1;
sqlite> select name from isp where update_error_strike=3;
Champagne-Ardenne Fournisseur associatif d'Accès à Internet
SamesWireless Fournisseur Associatif d'Accès à Internet
Quantic Télécom
tetaneutral.net
Teleragno
PCLight
guifi.net - Open, Free and Neutral Community Network
Troyes Telecom
Rhizome
Neutrinet
FAImaison
Nice Data Network
Arbeitsgemeinschaft Dresdner Studentennetz
Netopi
tmp-fai
Arcane
Tuyaux Internet LIbre du MAine
EDIT: (for the follow-up)
sqlite> select id,name from isp where update_error_strike=3;
sqlite> update isp set update_error_strike=0 where ID=$id;
We just hit this issue right now :)
And it seems that the setting `is_disabled=1` doesn't works. (we have a lot of FAI with a `update_error_strike=3` but the `is_disabled=0`).
```
sqlite> select name,update_error_strike from isp where is_disabled=1;
sqlite> select name from isp where update_error_strike=3;
Champagne-Ardenne Fournisseur associatif d'Accès à Internet
SamesWireless Fournisseur Associatif d'Accès à Internet
Quantic Télécom
tetaneutral.net
Teleragno
PCLight
guifi.net - Open, Free and Neutral Community Network
Troyes Telecom
Rhizome
Neutrinet
FAImaison
Nice Data Network
Arbeitsgemeinschaft Dresdner Studentennetz
Netopi
tmp-fai
Arcane
Tuyaux Internet LIbre du MAine
```
EDIT: (for the follow-up)
```
sqlite> select id,name from isp where update_error_strike=3;
sqlite> update isp set update_error_strike=0 where ID=$id;
```
Currently, when ffdn-db fails to fetch the isp.json file, it deactivates the automatic updates and sends an email to the technical contact of the ISP. This email is often disregarded or forgotten, and the ISP stays deactivated more or less forever.
It could be a good idea to send regular emails to the technical contact while the ISP is deactivated, for instance once a week.
We just hit this issue right now :)
And it seems that the setting
is_disabled=1
doesn't works. (we have a lot of FAI with aupdate_error_strike=3
but theis_disabled=0
).EDIT: (for the follow-up)