Disable the automatic reply for the mailbox. :return: Success / Failure :rtype: bool
(self)
| 831 | return value |
| 832 | |
| 833 | def set_disable_reply(self): |
| 834 | """Disable the automatic reply for the mailbox. |
| 835 | |
| 836 | :return: Success / Failure |
| 837 | :rtype: bool |
| 838 | """ |
| 839 | |
| 840 | mailboxsettings = self.get_settings() |
| 841 | ars = mailboxsettings.automaticrepliessettings |
| 842 | |
| 843 | ars.status = AutoReplyStatus.DISABLED |
| 844 | return mailboxsettings.save() |
| 845 | |
| 846 | def inbox_folder(self): |
| 847 | """Shortcut to get Inbox Folder instance |
nothing calls this directly
no test coverage detected