Fabio Manganiello

Results 175 comments of Fabio Manganiello

Hi @JochenKr, thanks for the heads up! Did you manage to replicate the leak with this simple snippet or did you add some more logic around it? ```python for sample...

> I was running the baby monitor already like a year and it was running fine when I did a reset of the RPi once a day. Now my SD...

As stated by the error, recent versions of TensorFlow [require `h5py`](https://stackoverflow.com/questions/47422817/keras-importerror-save-model-requires-h5py-even-thought-the-code-already-imp) to export a model to `.h5` format.

You have to use Tensorflow 2.0 or higher. There have been simply too many changes in the API from 1.x to 2.x to be able to maintain back-compatibility.

Partial workaround: I have commented the `reverse` logic in [`internal/user/sync.go#127`](https://github.com/ProtonMail/proton-bridge/blob/v3/internal/user/sync.go#L127), removed the local store and forced a new sync. But this definitely doesn't feel right - the order is fixed...

Hi @gabor-meszaros, thanks for the response! I understand that testing the bridge against several clients takes some effort, but I've already suggested in the past that testing against at least...

Besides testing with other clients, many of the sorting issues on the bridge could be caught with a simple script like this: ```python from imapclient import IMAPClient client = IMAPClient(host='localhost',...

@tristan957 > I wish Proton just had opt-in IMAP and SMTP endpoints, so we didn't have to host the Bridge ourselves and then we could use alternative mobile email clients....

Btw the sorting issue seems gone for me, but I guess it's just because I have a bridge that has been actively listening on my server 24/7 for the past...

Seems also related to https://github.com/pixelfed/pixelfed/issues/1850. In my case all ActivityPub settings are also enabled: ```bash ACTIVITY_PUB="true" AP_REMOTE_FOLLOW="true" AP_INBOX="true" AP_OUTBOX="true" AP_SHAREDINBOX="true" ```