diff --git a/AUTHORS.md b/AUTHORS.md index cc10047d..69f179d0 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -10,3 +10,4 @@ various contributors: - Dave Vasilevsky (ghub:@vasi, email:) - Erik van Zijst (email:) +- Felipe Guaycuru (ghub:@guaycuru, email: ) diff --git a/src/gmv/gmvault.py b/src/gmv/gmvault.py index a6e1bc1b..f2e7da58 100755 --- a/src/gmv/gmvault.py +++ b/src/gmv/gmvault.py @@ -589,7 +589,7 @@ def sync(self, imap_req, compress_on_disk = True, \ LOG.critical("Disable compression when storing emails.") if self.use_encryption: - LOG.critical("Encryption activated. All emails will be encrypted before to be stored.") + LOG.critical("Encryption activated. All emails will be encrypted before being stored.") LOG.critical("Please take care of the encryption key stored in (%s) or all"\ " your stored emails will become unreadable." \ % (gmvault_db.GmailStorer.get_encryption_key_path(self.db_root_dir))) diff --git a/src/gmv/imap_utils.py b/src/gmv/imap_utils.py index 20968670..41fc3ad5 100755 --- a/src/gmv/imap_utils.py +++ b/src/gmv/imap_utils.py @@ -58,7 +58,7 @@ def retry(a_nb_tries=3, a_sleep_time=1, a_backoff=1): #pylint:disable=R0912 """ Decorator for retrying command when it failed with a imap or socket error. Should be used exclusively on imap exchanges. - Strategy, always retry on any imaplib or socket error. Wait few seconds before to retry + Strategy, always retry on any imaplib or socket error. Wait a few seconds before retrying backoff sets the factor by which the a_sleep_time should lengthen after each failure. backoff must be greater than 1, or else it isn't really a backoff """ @@ -94,7 +94,7 @@ def reconnect(the_self, rec_nb_tries, total_nb_tries, rec_error, rec_sleep_time # go in retry mode: reconnect. # retry reconnect as long as we have tries left try: - LOG.critical("Reconnecting to the from Gmail Server.") + LOG.critical("Reconnecting to the Gmail Server.") #reconnect to the current folder the_self.connect(go_to_current_folder = True ) diff --git a/src/sandbox/common_gmvault.py b/src/sandbox/common_gmvault.py index b5db3c1d..b6cfd75a 100755 --- a/src/sandbox/common_gmvault.py +++ b/src/sandbox/common_gmvault.py @@ -782,7 +782,7 @@ def sync(self, imap_req = imap_utils.GIMAPFetcher.IMAP_ALL, compress_on_disk = T LOG.critical("Disable compression when storing emails.") if self.use_encryption: - LOG.critical("Encryption activated. All emails will be encrypted before to be stored.") + LOG.critical("Encryption activated. All emails will be encrypted before being stored.") LOG.critical("Please take care of the encryption key stored in (%s) or all"\ " your stored emails will become unreadable." \ % (gmvault_db.GmailStorer.get_encryption_key_path(self.db_root_dir))) diff --git a/src/sandbox/gmvault_multiprocess.py b/src/sandbox/gmvault_multiprocess.py index 34c38bf4..a379bd06 100755 --- a/src/sandbox/gmvault_multiprocess.py +++ b/src/sandbox/gmvault_multiprocess.py @@ -653,7 +653,7 @@ def sync(self, imap_req = imap_utils.GIMAPFetcher.IMAP_ALL, compress_on_disk = T LOG.critical("Disable compression when storing emails.") if self.use_encryption: - LOG.critical("Encryption activated. All emails will be encrypted before to be stored.") + LOG.critical("Encryption activated. All emails will be encrypted before being stored.") LOG.critical("Please take care of the encryption key stored in (%s) or all"\ " your stored emails will become unreadable." % (gmvault_db.GmailStorer.get_encryption_key_path(self.db_root_dir)))