├── LICENSE ├── VERSION ├── adminpanel ├── VERSION ├── core │ ├── cadminpanel.php │ ├── constants.php │ ├── lang2js.php │ ├── modules.php │ ├── screens.php │ ├── screens │ │ ├── login.php │ │ ├── simple.php │ │ ├── standard.php │ │ └── table.php │ ├── templates │ │ ├── copyright.php │ │ ├── error.php │ │ ├── login-warning.php │ │ ├── login.php │ │ ├── main.php │ │ ├── standard.php │ │ ├── table-main.php │ │ └── table.php │ └── utils.php ├── index.php ├── modules │ ├── common │ │ ├── inc │ │ │ ├── ajax.php │ │ │ ├── constants.php │ │ │ ├── pop.php │ │ │ ├── populate.php │ │ │ └── post.php │ │ ├── index.php │ │ ├── js │ │ │ ├── db.js │ │ │ └── domains.js │ │ └── templates │ │ │ ├── db.php │ │ │ ├── main-edit-domain-general-collaboration.php │ │ │ ├── main-edit-domain-general-regional.php │ │ │ ├── main-edit-domain-general-webmail.php │ │ │ ├── main-top-edit-domain-name.php │ │ │ ├── main-top-edit-domain.php │ │ │ ├── security.php │ │ │ ├── social-aurora.php │ │ │ ├── social-footer.php │ │ │ ├── social-header.php │ │ │ └── social.php │ └── webmail │ │ ├── inc │ │ ├── ajax.php │ │ ├── blank.php │ │ ├── constants.php │ │ ├── pop.php │ │ ├── populate.php │ │ └── post.php │ │ ├── index.php │ │ ├── js │ │ ├── domains.js │ │ └── system.js │ │ └── templates │ │ ├── logging.php │ │ ├── main-edit-domain-address-book.php │ │ ├── main-edit-domain-general-webmail-top.php │ │ ├── main-edit-domain-webmail-end.php │ │ ├── main-edit-domain-webmail-top.php │ │ ├── main-top-edit-domain-webmail-externals-server.php │ │ ├── main-top-edit-domain-webmail-inc-server.php │ │ └── main-top-edit-domain-webmail-out-server.php └── static │ ├── images │ ├── close-popup.png │ ├── domsel_arrow.gif │ ├── dot.png │ ├── favicon.ico │ ├── icons │ │ ├── M.gif │ │ ├── U.gif │ │ └── U_disable.gif │ ├── mail.png │ ├── mailsuite-domain-icon-big.png │ ├── mailsuite-domain-icon.png │ ├── menu │ │ ├── accounts_arrow.gif │ │ ├── accounts_arrow_down.gif │ │ ├── accounts_arrow_over.gif │ │ ├── add_contacts_to.gif │ │ ├── arrow_down.gif │ │ ├── arrow_up.gif │ │ ├── attachment.gif │ │ ├── back_to_list.gif │ │ ├── check_mail.gif │ │ ├── delete.gif │ │ ├── empty_trash.gif │ │ ├── flag.gif │ │ ├── forward.gif │ │ ├── import_contacts.gif │ │ ├── index.php │ │ ├── mark_all_read.gif │ │ ├── mark_all_unread.gif │ │ ├── mark_as_read.gif │ │ ├── mark_as_unread.gif │ │ ├── message_down.gif │ │ ├── message_down_inactive.gif │ │ ├── message_up.gif │ │ ├── message_up_inactive.gif │ │ ├── move_to_folder.gif │ │ ├── new-domain.png │ │ ├── new_contact.gif │ │ ├── new_group.gif │ │ ├── new_message.gif │ │ ├── order_arrow_down.gif │ │ ├── order_arrow_up.gif │ │ ├── popup_menu_arrow.gif │ │ ├── print.gif │ │ ├── priority_high.gif │ │ ├── priority_low.gif │ │ ├── priority_normal.gif │ │ ├── purge.gif │ │ ├── reload_folders.gif │ │ ├── reply.gif │ │ ├── replyall.gif │ │ ├── save.gif │ │ ├── search_button.gif │ │ ├── search_button_big.gif │ │ ├── send.gif │ │ ├── unflag.gif │ │ ├── user_disable.png │ │ ├── user_enable.png │ │ ├── user_invite.png │ │ └── user_new.png │ ├── page_switchers │ │ ├── inbox_first_page.gif │ │ ├── inbox_last_page.gif │ │ ├── inbox_left_border.gif │ │ ├── inbox_next_page.gif │ │ ├── inbox_prev_page.gif │ │ ├── inbox_right_border.gif │ │ └── index.php │ ├── wm-domain-icon-big.png │ └── wm-domain-icon.png │ ├── js │ ├── common.js │ ├── jquery.js │ ├── knockout-2.3.0.js │ └── screens │ │ └── table.js │ └── styles │ ├── demo_note_bg.png │ ├── gradients.png │ ├── header.png │ ├── login_form_refl.png │ ├── mail.png │ ├── screens │ ├── login.css │ ├── standard.css │ └── table.css │ └── style.css ├── crons └── reminders.php ├── data ├── .htaccess ├── default.htm ├── index.html ├── plugins │ ├── external-services │ │ ├── LICENSE │ │ ├── connectors │ │ │ ├── dropbox │ │ │ │ ├── css │ │ │ │ │ └── styles.css │ │ │ │ ├── images │ │ │ │ │ └── icon.png │ │ │ │ └── index.php │ │ │ ├── facebook │ │ │ │ ├── css │ │ │ │ │ └── styles.css │ │ │ │ ├── images │ │ │ │ │ └── icon.png │ │ │ │ └── index.php │ │ │ ├── google │ │ │ │ ├── css │ │ │ │ │ └── styles.css │ │ │ │ ├── images │ │ │ │ │ └── icon.png │ │ │ │ └── index.php │ │ │ └── twitter │ │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ │ ├── images │ │ │ │ └── icon.png │ │ │ │ └── index.php │ │ ├── i18n │ │ │ ├── Czech.ini │ │ │ ├── English.ini │ │ │ ├── Estonian.ini │ │ │ └── Russian.ini │ │ ├── index.php │ │ ├── js │ │ │ ├── CExternalServicesViewModel.js │ │ │ └── include.js │ │ └── templates │ │ │ ├── GooglePickerPopup.html │ │ │ ├── attach-from.html │ │ │ ├── helpdesk-login.html │ │ │ ├── login.html │ │ │ └── settings.html │ └── two-factor-authentication │ │ ├── LICENSE │ │ ├── css │ │ ├── fonts │ │ │ ├── afterlogic-two-factor-authentication.eot │ │ │ ├── afterlogic-two-factor-authentication.svg │ │ │ ├── afterlogic-two-factor-authentication.ttf │ │ │ ├── afterlogic-two-factor-authentication.woff │ │ │ ├── afterlogic.eot │ │ │ ├── afterlogic.svg │ │ │ ├── afterlogic.ttf │ │ │ └── afterlogic.woff │ │ └── style.css │ │ ├── i18n │ │ ├── English.ini │ │ ├── Estonian.ini │ │ └── Russian.ini │ │ ├── index.php │ │ ├── js │ │ ├── CAuthenticationViewModel.js │ │ ├── ValidatePasswordPopup.js │ │ ├── VerifyTokenPopup.js │ │ └── include.js │ │ ├── libs │ │ └── autoload.php │ │ └── templates │ │ ├── AuthenticationTemplate.html │ │ ├── ValidatePasswordPopup.html │ │ ├── VerifyTokenPopup.html │ │ └── index.html └── settings │ ├── .htaccess │ ├── config.php │ └── settings.xml ├── examples ├── account-inbox-info.php ├── account-overview.php ├── login-to-account.php ├── plugins │ └── poppassd-change-password │ │ ├── LICENSE │ │ └── index.php ├── sql-schema.php └── sso-login.php ├── favicon.ico ├── i18n ├── Arabic.ini ├── Bulgarian.ini ├── Chinese-Simplified.ini ├── Chinese-Traditional.ini ├── Czech.ini ├── Danish.ini ├── Dutch.ini ├── English.ini ├── Estonian.ini ├── Finnish.ini ├── French.ini ├── German.ini ├── Greek.ini ├── Hebrew.ini ├── Hungarian.ini ├── Italian.ini ├── Japanese.ini ├── Korean.ini ├── Latvian.ini ├── Lithuanian.ini ├── Norwegian.ini ├── Persian.ini ├── Polish.ini ├── Portuguese-Brazil.ini ├── Portuguese-Portuguese.ini ├── Romanian.ini ├── Russian.ini ├── Serbian.ini ├── Slovak.ini ├── Slovenian.ini ├── Spanish.ini ├── Swedish.ini ├── Thai.ini ├── Turkish.ini ├── Ukrainian.ini └── Vietnamese.ini ├── index.php ├── install ├── css │ └── styles.css ├── images │ ├── alarm.png │ └── wmp-php-install-logo.png ├── index.php ├── installer.php ├── js │ ├── install.js │ └── jquery.js ├── steps │ ├── admin-panel.php │ ├── compatibility.php │ ├── completed.php │ ├── db.php │ ├── email-server-test.php │ └── license.php └── templates │ ├── admin-panel.html │ ├── compatibility.html │ ├── completed.html │ ├── dav.html │ ├── db.html │ ├── email-server-test.html │ ├── error-step.html │ ├── license.html │ ├── main.html │ └── nav-line.html ├── libraries ├── Knp │ └── Snappy │ │ ├── AbstractGenerator.php │ │ ├── Exception │ │ └── FileAlreadyExistsException.php │ │ ├── GeneratorInterface.php │ │ ├── Image.php │ │ ├── Pdf.php │ │ └── Process.php ├── MailSo │ ├── Base │ │ ├── Collection.php │ │ ├── Crypt.php │ │ ├── DateTimeHelper.php │ │ ├── Enumerations │ │ │ ├── Charset.php │ │ │ └── Encoding.php │ │ ├── Exceptions │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── HtmlUtils.php │ │ ├── Http.php │ │ ├── LinkFinder.php │ │ ├── Loader.php │ │ ├── ResourceRegistry.php │ │ ├── StreamWrappers │ │ │ ├── Binary.php │ │ │ ├── Literal.php │ │ │ ├── SubStreams.php │ │ │ └── Test.php │ │ ├── Utils.php │ │ └── Validator.php │ ├── Cache │ │ ├── CacheClient.php │ │ ├── DriverInterface.php │ │ └── Drivers │ │ │ ├── APC.php │ │ │ ├── File.php │ │ │ └── Memcache.php │ ├── Config.php │ ├── Hooks.php │ ├── Imap │ │ ├── BodyStructure.php │ │ ├── Enumerations │ │ │ ├── FetchType.php │ │ │ ├── FolderResponseStatus.php │ │ │ ├── FolderStatus.php │ │ │ ├── FolderType.php │ │ │ ├── MessageFlag.php │ │ │ ├── ResponseStatus.php │ │ │ ├── ResponseType.php │ │ │ └── StoreAction.php │ │ ├── Exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidResponseException.php │ │ │ ├── LoginBadCredentialsException.php │ │ │ ├── LoginBadMethodException.php │ │ │ ├── LoginException.php │ │ │ ├── NegativeResponseException.php │ │ │ ├── ResponseException.php │ │ │ ├── ResponseNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── FetchResponse.php │ │ ├── Folder.php │ │ ├── FolderInformation.php │ │ ├── ImapClient.php │ │ ├── NamespaceResult.php │ │ └── Response.php │ ├── Log │ │ ├── Driver.php │ │ ├── Drivers │ │ │ ├── Callback.php │ │ │ ├── File.php │ │ │ └── Inline.php │ │ ├── Enumerations │ │ │ └── Type.php │ │ └── Logger.php │ ├── Mail │ │ ├── Attachment.php │ │ ├── AttachmentCollection.php │ │ ├── Exceptions │ │ │ ├── Exception.php │ │ │ ├── NonEmptyFolder.php │ │ │ └── RuntimeException.php │ │ ├── Folder.php │ │ ├── FolderCollection.php │ │ ├── MailClient.php │ │ ├── Message.php │ │ └── MessageCollection.php │ ├── MailSo.php │ ├── Mime │ │ ├── Attachment.php │ │ ├── AttachmentCollection.php │ │ ├── Email.php │ │ ├── EmailCollection.php │ │ ├── Enumerations │ │ │ ├── Constants.php │ │ │ ├── Header.php │ │ │ ├── MessagePriority.php │ │ │ ├── MimeType.php │ │ │ ├── Parameter.php │ │ │ └── Sensitivity.php │ │ ├── Header.php │ │ ├── HeaderCollection.php │ │ ├── Message.php │ │ ├── Parameter.php │ │ ├── ParameterCollection.php │ │ ├── Parser │ │ │ ├── ParserEmpty.php │ │ │ ├── ParserInterface.php │ │ │ └── ParserMemory.php │ │ ├── Part.php │ │ └── PartCollection.php │ ├── Net │ │ ├── Enumerations │ │ │ └── ConnectionSecurityType.php │ │ ├── Exceptions │ │ │ ├── ConnectionException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── SocketAlreadyConnectedException.php │ │ │ ├── SocketCanNotConnectToHostException.php │ │ │ ├── SocketConnectionDoesNotAvailableException.php │ │ │ ├── SocketReadException.php │ │ │ ├── SocketReadTimeoutException.php │ │ │ ├── SocketUnreadBufferException.php │ │ │ ├── SocketUnsuppoterdSecureConnectionException.php │ │ │ └── SocketWriteException.php │ │ └── NetClient.php │ ├── Pop3 │ │ ├── Exceptions │ │ │ ├── Exception.php │ │ │ ├── LoginBadCredentialsException.php │ │ │ ├── NegativeResponseException.php │ │ │ ├── ResponseException.php │ │ │ └── RuntimeException.php │ │ └── Pop3Client.php │ ├── Poppassd │ │ ├── Exceptions │ │ │ ├── Exception.php │ │ │ ├── LoginBadCredentialsException.php │ │ │ ├── NegativeResponseException.php │ │ │ ├── ResponseException.php │ │ │ └── RuntimeException.php │ │ └── PoppassdClient.php │ ├── Sieve │ │ ├── Exceptions │ │ │ ├── Exception.php │ │ │ ├── LoginBadCredentialsException.php │ │ │ ├── LoginBadMethodException.php │ │ │ ├── LoginException.php │ │ │ ├── NegativeResponseException.php │ │ │ ├── ResponseException.php │ │ │ └── RuntimeException.php │ │ └── ManageSieveClient.php │ ├── Smtp │ │ ├── Exceptions │ │ │ ├── Exception.php │ │ │ ├── LoginBadCredentialsException.php │ │ │ ├── LoginBadMethodException.php │ │ │ ├── LoginException.php │ │ │ ├── MailboxUnavailableException.php │ │ │ ├── NegativeResponseException.php │ │ │ ├── ResponseException.php │ │ │ └── RuntimeException.php │ │ └── SmtpClient.php │ ├── Vendors │ │ └── Net │ │ │ ├── IDNA2.php │ │ │ ├── IDNA2 │ │ │ ├── Exception.php │ │ │ └── Exception │ │ │ │ └── Nameprep.php │ │ │ └── IDNA2CustomExceptions.php │ └── Version.php ├── OAuthClient │ ├── LICENSE │ ├── README.md │ ├── cookie_oauth_client.php │ ├── database_oauth_client.php │ ├── enter_pin.php │ ├── file_login_with_google.php │ ├── file_oauth_client.php │ ├── google_contacts_api_php_example.php │ ├── http.php │ ├── login_check_with_facebook.php │ ├── login_with_37signals.php │ ├── login_with_amazon.php │ ├── login_with_aol.php │ ├── login_with_bitbucket.php │ ├── login_with_bitly.php │ ├── login_with_box.php │ ├── login_with_buffer.php │ ├── login_with_copy.php │ ├── login_with_dailymotion.php │ ├── login_with_discogs.php │ ├── login_with_disqus.php │ ├── login_with_dropbox.php │ ├── login_with_etsy.php │ ├── login_with_eventful.php │ ├── login_with_facebook.php │ ├── login_with_fitbit.php │ ├── login_with_fitbit2.php │ ├── login_with_flickr.php │ ├── login_with_foursquare.php │ ├── login_with_garmin.php │ ├── login_with_github.php │ ├── login_with_google.php │ ├── login_with_ihealth.php │ ├── login_with_imgur.php │ ├── login_with_infusionsoft.php │ ├── login_with_instagram.php │ ├── login_with_intuit.php │ ├── login_with_jawbone.php │ ├── login_with_linkedin.php │ ├── login_with_linkedin2.php │ ├── login_with_livecoding.php │ ├── login_with_mail.ru.php │ ├── login_with_mailchimp.php │ ├── login_with_mavenlink.php │ ├── login_with_meetup.php │ ├── login_with_microsoft.php │ ├── login_with_microsoft_openid_connect.php │ ├── login_with_misfit.php │ ├── login_with_odesk.php │ ├── login_with_odnoklassniki.php │ ├── login_with_paypal.php │ ├── login_with_pinterest.php │ ├── login_with_rdio.php │ ├── login_with_reddit.php │ ├── login_with_rightsignature.php │ ├── login_with_runkeeper.php │ ├── login_with_salesforce.php │ ├── login_with_scoopit.php │ ├── login_with_stocktwits.php │ ├── login_with_surveymonkey.php │ ├── login_with_teamviewer.php │ ├── login_with_tumblr.php │ ├── login_with_twitter.php │ ├── login_with_twitter2.php │ ├── login_with_uber.php │ ├── login_with_vimeo.php │ ├── login_with_vk.php │ ├── login_with_withings.php │ ├── login_with_wordpress.php │ ├── login_with_xero.php │ ├── login_with_xing.php │ ├── login_with_yahoo.php │ ├── login_with_yammer.php │ ├── login_with_yandex.php │ ├── logout_from_google.php │ ├── mysqli_login_with_google.php │ ├── mysqli_login_with_twitter.php │ ├── mysqli_oauth_client.php │ ├── mysqli_offline_access_to_google.php │ ├── mysqli_offline_access_to_twitter.php │ ├── oauth.sql │ ├── oauth_client.php │ ├── oauth_client_class.html │ ├── oauth_configuration.json │ ├── php-oauth-api.png │ └── test_oauth_client.php ├── PHPGangsta │ └── GoogleAuthenticator.php ├── PHPThumb │ ├── GD.php │ ├── PHPThumb.php │ ├── PluginInterface.php │ └── Plugins │ │ └── Reflection.php ├── ProjectCore │ ├── Actions.php │ ├── ActionsBase.php │ ├── Base │ │ ├── DataByRef.php │ │ └── Utils.php │ ├── Boot.php │ ├── Exceptions │ │ ├── ClientException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── Notifications.php │ ├── Service.php │ └── Storage │ │ ├── Client.php │ │ ├── Drivers │ │ └── Files.php │ │ ├── Enumerations │ │ ├── StorageType.php │ │ ├── UploadClientError.php │ │ └── UploadError.php │ │ └── StorageInterface.php ├── Sabre │ ├── CalDAV │ │ ├── Backend │ │ │ ├── AbstractBackend.php │ │ │ ├── BackendInterface.php │ │ │ ├── NotificationSupport.php │ │ │ ├── PDO.php │ │ │ └── SharingSupport.php │ │ ├── Calendar.php │ │ ├── CalendarObject.php │ │ ├── CalendarQueryParser.php │ │ ├── CalendarQueryValidator.php │ │ ├── CalendarRootNode.php │ │ ├── Exception │ │ │ └── InvalidComponentType.php │ │ ├── ICSExportPlugin.php │ │ ├── ICalendar.php │ │ ├── ICalendarObject.php │ │ ├── IShareableCalendar.php │ │ ├── ISharedCalendar.php │ │ ├── Notifications │ │ │ ├── Collection.php │ │ │ ├── ICollection.php │ │ │ ├── INode.php │ │ │ ├── INotificationType.php │ │ │ ├── Node.php │ │ │ └── Notification │ │ │ │ ├── Invite.php │ │ │ │ ├── InviteReply.php │ │ │ │ └── SystemStatus.php │ │ ├── Plugin.php │ │ ├── Principal │ │ │ ├── Collection.php │ │ │ ├── IProxyRead.php │ │ │ ├── IProxyWrite.php │ │ │ ├── ProxyRead.php │ │ │ ├── ProxyWrite.php │ │ │ └── User.php │ │ ├── Property │ │ │ ├── AllowedSharingModes.php │ │ │ ├── Invite.php │ │ │ ├── ScheduleCalendarTransp.php │ │ │ ├── SupportedCalendarComponentSet.php │ │ │ ├── SupportedCalendarData.php │ │ │ └── SupportedCollationSet.php │ │ ├── Schedule │ │ │ ├── IMip.php │ │ │ ├── IOutbox.php │ │ │ └── Outbox.php │ │ ├── ShareableCalendar.php │ │ ├── SharedCalendar.php │ │ ├── SharingPlugin.php │ │ ├── UserCalendars.php │ │ └── Version.php │ ├── CardDAV │ │ ├── AddressBook.php │ │ ├── AddressBookQueryParser.php │ │ ├── AddressBookRoot.php │ │ ├── Backend │ │ │ ├── AbstractBackend.php │ │ │ ├── BackendInterface.php │ │ │ └── PDO.php │ │ ├── Card.php │ │ ├── IAddressBook.php │ │ ├── ICard.php │ │ ├── IDirectory.php │ │ ├── Plugin.php │ │ ├── Property │ │ │ └── SupportedAddressData.php │ │ ├── UserAddressBooks.php │ │ ├── VCFExportPlugin.php │ │ └── Version.php │ ├── DAV │ │ ├── Auth │ │ │ ├── Backend │ │ │ │ ├── AbstractBasic.php │ │ │ │ ├── AbstractDigest.php │ │ │ │ ├── Apache.php │ │ │ │ ├── BackendInterface.php │ │ │ │ ├── File.php │ │ │ │ └── PDO.php │ │ │ └── Plugin.php │ │ ├── Browser │ │ │ ├── GuessContentType.php │ │ │ ├── MapGetToPropFind.php │ │ │ ├── Plugin.php │ │ │ └── assets │ │ │ │ ├── favicon.ico │ │ │ │ └── icons │ │ │ │ ├── addressbook.png │ │ │ │ ├── calendar.png │ │ │ │ ├── card.png │ │ │ │ ├── collection.png │ │ │ │ ├── file.png │ │ │ │ ├── parent.png │ │ │ │ └── principal.png │ │ ├── Client.php │ │ ├── Collection.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── BadRequest.php │ │ │ ├── Conflict.php │ │ │ ├── ConflictingLock.php │ │ │ ├── FileNotFound.php │ │ │ ├── Forbidden.php │ │ │ ├── InsufficientStorage.php │ │ │ ├── InvalidResourceType.php │ │ │ ├── LengthRequired.php │ │ │ ├── LockTokenMatchesRequestUri.php │ │ │ ├── Locked.php │ │ │ ├── MethodNotAllowed.php │ │ │ ├── NotAuthenticated.php │ │ │ ├── NotFound.php │ │ │ ├── NotImplemented.php │ │ │ ├── PaymentRequired.php │ │ │ ├── PreconditionFailed.php │ │ │ ├── ReportNotSupported.php │ │ │ ├── RequestedRangeNotSatisfiable.php │ │ │ ├── ServiceUnavailable.php │ │ │ └── UnsupportedMediaType.php │ │ ├── FS │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Node.php │ │ ├── FSExt │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Node.php │ │ ├── File.php │ │ ├── ICollection.php │ │ ├── IExtendedCollection.php │ │ ├── IFile.php │ │ ├── INode.php │ │ ├── IProperties.php │ │ ├── IQuota.php │ │ ├── Locks │ │ │ ├── Backend │ │ │ │ ├── AbstractBackend.php │ │ │ │ ├── BackendInterface.php │ │ │ │ ├── FS.php │ │ │ │ ├── File.php │ │ │ │ └── PDO.php │ │ │ ├── LockInfo.php │ │ │ └── Plugin.php │ │ ├── Mount │ │ │ └── Plugin.php │ │ ├── Node.php │ │ ├── ObjectTree.php │ │ ├── PartialUpdate │ │ │ ├── IFile.php │ │ │ ├── IPatchSupport.php │ │ │ └── Plugin.php │ │ ├── Property.php │ │ ├── Property │ │ │ ├── GetLastModified.php │ │ │ ├── Href.php │ │ │ ├── HrefList.php │ │ │ ├── IHref.php │ │ │ ├── LockDiscovery.php │ │ │ ├── ResourceType.php │ │ │ ├── Response.php │ │ │ ├── ResponseList.php │ │ │ ├── SupportedLock.php │ │ │ └── SupportedReportSet.php │ │ ├── PropertyInterface.php │ │ ├── Server.php │ │ ├── ServerPlugin.php │ │ ├── SimpleCollection.php │ │ ├── SimpleFile.php │ │ ├── StringUtil.php │ │ ├── TemporaryFileFilterPlugin.php │ │ ├── Tree.php │ │ ├── Tree │ │ │ └── Filesystem.php │ │ ├── URLUtil.php │ │ ├── UUIDUtil.php │ │ ├── Version.php │ │ └── XMLUtil.php │ ├── DAVACL │ │ ├── AbstractPrincipalCollection.php │ │ ├── Exception │ │ │ ├── AceConflict.php │ │ │ ├── NeedPrivileges.php │ │ │ ├── NoAbstract.php │ │ │ ├── NotRecognizedPrincipal.php │ │ │ └── NotSupportedPrivilege.php │ │ ├── IACL.php │ │ ├── IPrincipal.php │ │ ├── IPrincipalCollection.php │ │ ├── Plugin.php │ │ ├── Principal.php │ │ ├── PrincipalBackend │ │ │ ├── AbstractBackend.php │ │ │ ├── BackendInterface.php │ │ │ └── PDO.php │ │ ├── PrincipalCollection.php │ │ ├── Property │ │ │ ├── Acl.php │ │ │ ├── AclRestrictions.php │ │ │ ├── CurrentUserPrivilegeSet.php │ │ │ ├── Principal.php │ │ │ └── SupportedPrivilegeSet.php │ │ └── Version.php │ ├── HTTP │ │ ├── AWSAuth.php │ │ ├── AbstractAuth.php │ │ ├── BasicAuth.php │ │ ├── DigestAuth.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Util.php │ │ └── Version.php │ ├── VObject │ │ ├── Cli.php │ │ ├── Component.php │ │ ├── Component │ │ │ ├── Available.php │ │ │ ├── VAlarm.php │ │ │ ├── VAvailability.php │ │ │ ├── VCalendar.php │ │ │ ├── VCard.php │ │ │ ├── VEvent.php │ │ │ ├── VFreeBusy.php │ │ │ ├── VJournal.php │ │ │ ├── VTimeZone.php │ │ │ └── VTodo.php │ │ ├── DateTimeParser.php │ │ ├── Document.php │ │ ├── ElementList.php │ │ ├── EofException.php │ │ ├── FreeBusyGenerator.php │ │ ├── ITip │ │ │ ├── Broker.php │ │ │ ├── ITipException.php │ │ │ ├── Message.php │ │ │ └── SameOrganizerForAllComponentsException.php │ │ ├── Node.php │ │ ├── Parameter.php │ │ ├── ParseException.php │ │ ├── Parser │ │ │ ├── Json.php │ │ │ ├── MimeDir.php │ │ │ └── Parser.php │ │ ├── Property.php │ │ ├── Property │ │ │ ├── Binary.php │ │ │ ├── Boolean.php │ │ │ ├── FlatText.php │ │ │ ├── Float.php │ │ │ ├── ICalendar │ │ │ │ ├── CalAddress.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Duration.php │ │ │ │ ├── Period.php │ │ │ │ └── Recur.php │ │ │ ├── Integer.php │ │ │ ├── Text.php │ │ │ ├── Time.php │ │ │ ├── Unknown.php │ │ │ ├── Uri.php │ │ │ ├── UtcOffset.php │ │ │ └── VCard │ │ │ │ ├── Date.php │ │ │ │ ├── DateAndOrTime.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── LanguageTag.php │ │ │ │ └── TimeStamp.php │ │ ├── Reader.php │ │ ├── Recur │ │ │ ├── EventIterator.php │ │ │ ├── NoInstancesException.php │ │ │ ├── RDateIterator.php │ │ │ └── RRuleIterator.php │ │ ├── RecurrenceIterator.php │ │ ├── Splitter │ │ │ ├── ICalendar.php │ │ │ ├── SplitterInterface.php │ │ │ └── VCard.php │ │ ├── StringUtil.php │ │ ├── TimeZoneUtil.php │ │ ├── UUIDUtil.php │ │ ├── VCardConverter.php │ │ ├── Version.php │ │ └── timezonedata │ │ │ ├── exchangezones.php │ │ │ ├── lotuszones.php │ │ │ ├── php-bc.php │ │ │ ├── php-workaround.php │ │ │ └── windowszones.php │ ├── VObject3.3.4 │ │ ├── Cli.php │ │ ├── Component.php │ │ ├── Component │ │ │ ├── VAlarm.php │ │ │ ├── VCalendar.php │ │ │ ├── VCard.php │ │ │ ├── VEvent.php │ │ │ ├── VFreeBusy.php │ │ │ ├── VJournal.php │ │ │ ├── VTimeZone.php │ │ │ └── VTodo.php │ │ ├── DateTimeParser.php │ │ ├── Document.php │ │ ├── ElementList.php │ │ ├── EofException.php │ │ ├── FreeBusyGenerator.php │ │ ├── ITip │ │ │ ├── Broker.php │ │ │ ├── ITipException.php │ │ │ ├── Message.php │ │ │ └── SameOrganizerForAllComponentsException.php │ │ ├── Node.php │ │ ├── Parameter.php │ │ ├── ParseException.php │ │ ├── Parser │ │ │ ├── Json.php │ │ │ ├── MimeDir.php │ │ │ └── Parser.php │ │ ├── Property.php │ │ ├── Property │ │ │ ├── Binary.php │ │ │ ├── Boolean.php │ │ │ ├── FlatText.php │ │ │ ├── Float.php │ │ │ ├── ICalendar │ │ │ │ ├── CalAddress.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Duration.php │ │ │ │ ├── Period.php │ │ │ │ └── Recur.php │ │ │ ├── Integer.php │ │ │ ├── Text.php │ │ │ ├── Time.php │ │ │ ├── Unknown.php │ │ │ ├── Uri.php │ │ │ ├── UtcOffset.php │ │ │ └── VCard │ │ │ │ ├── Date.php │ │ │ │ ├── DateAndOrTime.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── LanguageTag.php │ │ │ │ └── TimeStamp.php │ │ ├── Reader.php │ │ ├── Recur │ │ │ ├── EventIterator.php │ │ │ ├── NoInstancesException.php │ │ │ ├── RDateIterator.php │ │ │ └── RRuleIterator.php │ │ ├── RecurrenceIterator.php │ │ ├── Splitter │ │ │ ├── ICalendar.php │ │ │ ├── SplitterInterface.php │ │ │ └── VCard.php │ │ ├── StringUtil.php │ │ ├── TimeZoneUtil.php │ │ ├── UUIDUtil.php │ │ ├── VCardConverter.php │ │ ├── Version.php │ │ └── timezonedata │ │ │ ├── exchangezones.php │ │ │ ├── lotuszones.php │ │ │ ├── php-bc.php │ │ │ ├── php-workaround.php │ │ │ └── windowszones.php │ └── autoload.php ├── Services │ ├── Twilio.php │ ├── Twilio │ │ ├── AutoPagingIterator.php │ │ ├── Capability.php │ │ ├── HttpException.php │ │ ├── HttpStream.php │ │ ├── InstanceResource.php │ │ ├── ListResource.php │ │ ├── NumberType.php │ │ ├── Page.php │ │ ├── PartialApplicationHelper.php │ │ ├── RequestValidator.php │ │ ├── Resource.php │ │ ├── Rest │ │ │ ├── Account.php │ │ │ ├── Accounts.php │ │ │ ├── Application.php │ │ │ ├── Applications.php │ │ │ ├── AuthorizedConnectApp.php │ │ │ ├── AuthorizedConnectApps.php │ │ │ ├── AvailablePhoneNumber.php │ │ │ ├── AvailablePhoneNumbers.php │ │ │ ├── Call.php │ │ │ ├── Calls.php │ │ │ ├── Conference.php │ │ │ ├── Conferences.php │ │ │ ├── ConnectApp.php │ │ │ ├── ConnectApps.php │ │ │ ├── Credential.php │ │ │ ├── CredentialList.php │ │ │ ├── CredentialListMapping.php │ │ │ ├── CredentialListMappings.php │ │ │ ├── CredentialLists.php │ │ │ ├── Credentials.php │ │ │ ├── Domain.php │ │ │ ├── Domains.php │ │ │ ├── IncomingPhoneNumber.php │ │ │ ├── IncomingPhoneNumbers.php │ │ │ ├── IpAccessControlList.php │ │ │ ├── IpAccessControlListMapping.php │ │ │ ├── IpAccessControlListMappings.php │ │ │ ├── IpAccessControlLists.php │ │ │ ├── IpAddress.php │ │ │ ├── IpAddresses.php │ │ │ ├── Media.php │ │ │ ├── MediaInstance.php │ │ │ ├── Member.php │ │ │ ├── Members.php │ │ │ ├── Message.php │ │ │ ├── Messages.php │ │ │ ├── Notification.php │ │ │ ├── Notifications.php │ │ │ ├── OutgoingCallerId.php │ │ │ ├── OutgoingCallerIds.php │ │ │ ├── Participant.php │ │ │ ├── Participants.php │ │ │ ├── Queue.php │ │ │ ├── Queues.php │ │ │ ├── Recording.php │ │ │ ├── Recordings.php │ │ │ ├── Sandbox.php │ │ │ ├── ShortCode.php │ │ │ ├── ShortCodes.php │ │ │ ├── Sip.php │ │ │ ├── SmsMessage.php │ │ │ ├── SmsMessages.php │ │ │ ├── Transcription.php │ │ │ ├── Transcriptions.php │ │ │ ├── UsageRecord.php │ │ │ ├── UsageRecords.php │ │ │ ├── UsageTrigger.php │ │ │ └── UsageTriggers.php │ │ ├── RestException.php │ │ ├── SIPListResource.php │ │ ├── TimeRangeResource.php │ │ ├── TinyHttp.php │ │ ├── Twiml.php │ │ └── UsageResource.php │ └── cacert.pem ├── Symfony │ └── Component │ │ └── Filesystem │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── FileNotFoundException.php │ │ ├── IOException.php │ │ └── IOExceptionInterface.php │ │ └── Filesystem.php ├── afterlogic │ ├── DAV │ │ ├── Auth │ │ │ ├── Backend.php │ │ │ └── Backend │ │ │ │ ├── Basic.php │ │ │ │ └── Digest.php │ │ ├── Backend.php │ │ ├── Backends.php │ │ ├── CalDAV │ │ │ ├── Backend │ │ │ │ └── PDO.php │ │ │ ├── CalendarRootNode.php │ │ │ ├── SharedCalendar.php │ │ │ └── UserCalendars.php │ │ ├── CardDAV │ │ │ ├── AddressBook.php │ │ │ ├── AddressBookRoot.php │ │ │ ├── Backend │ │ │ │ ├── OwnCloudPDO.php │ │ │ │ └── PDO.php │ │ │ ├── EmptyAddressBooks.php │ │ │ ├── GAddressBooks.php │ │ │ ├── GCard.php │ │ │ ├── SharedAddressBook.php │ │ │ ├── SharedCard.php │ │ │ └── UserAddressBooks.php │ │ ├── Client.php │ │ ├── Constants.php │ │ ├── Contacts │ │ │ └── Plugin.php │ │ ├── FS │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ ├── Plugin.php │ │ │ ├── RootPersonal.php │ │ │ ├── RootPublic.php │ │ │ ├── RootShared.php │ │ │ ├── SharedDirectory.php │ │ │ ├── SharedFile.php │ │ │ └── SharedItem.php │ │ ├── Locks │ │ │ └── Backend │ │ │ │ └── PDO.php │ │ ├── Logs │ │ │ └── Plugin.php │ │ ├── Principal │ │ │ └── Backend │ │ │ │ ├── PDO.php │ │ │ │ └── PDOExt.php │ │ ├── Reminders │ │ │ ├── Backend │ │ │ │ └── PDO.php │ │ │ └── Plugin.php │ │ ├── Server.php │ │ ├── Utils.php │ │ └── autoload.php │ ├── api.php │ └── common │ │ ├── config.php │ │ ├── constants.php │ │ ├── container.php │ │ ├── crypt.php │ │ ├── dav │ │ └── client.php │ │ ├── db │ │ ├── command_creator.php │ │ ├── helper.php │ │ ├── mysql │ │ │ ├── helper.php │ │ │ └── mysql.php │ │ ├── pdo │ │ │ ├── mysql.php │ │ │ ├── mysql_helper.php │ │ │ ├── postgres.php │ │ │ ├── postgres_helper.php │ │ │ ├── sqlite.php │ │ │ └── sqlite_helper.php │ │ ├── sql.php │ │ ├── storage.php │ │ └── table.php │ │ ├── enum.php │ │ ├── exception.php │ │ ├── functions.php │ │ ├── http.php │ │ ├── i18n │ │ ├── en.ini │ │ └── ru.ini │ │ ├── ldap.php │ │ ├── lite.php │ │ ├── manager.php │ │ ├── managers │ │ ├── capability │ │ │ └── manager.php │ │ ├── contacts │ │ │ ├── helpers │ │ │ │ ├── csv │ │ │ │ │ ├── formatter.php │ │ │ │ │ └── parser.php │ │ │ │ └── sync │ │ │ │ │ └── csv.php │ │ │ └── manager.php │ │ ├── contactsmain │ │ │ ├── classes │ │ │ │ ├── contact-list-item.php │ │ │ │ ├── contact.php │ │ │ │ ├── group.php │ │ │ │ └── vcard-helper.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── carddav │ │ │ │ └── storage.php │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ ├── ldap │ │ │ │ └── storage.php │ │ │ │ ├── nodb │ │ │ │ └── storage.php │ │ │ │ └── sabredav │ │ │ │ └── storage.php │ │ ├── dav │ │ │ └── manager.php │ │ ├── db │ │ │ ├── classes │ │ │ │ ├── enum.php │ │ │ │ └── sql.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── domains │ │ │ ├── classes │ │ │ │ └── domain.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── fetchers │ │ │ ├── classes │ │ │ │ └── fetcher.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── filecache │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── default.php │ │ │ │ └── file │ │ │ │ └── storage.php │ │ ├── filestorage │ │ │ ├── classes │ │ │ │ └── item.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── default.php │ │ │ │ └── sabredav │ │ │ │ └── storage.php │ │ ├── helpdesk │ │ │ ├── classes │ │ │ │ ├── attachment.php │ │ │ │ ├── enum.php │ │ │ │ ├── post.php │ │ │ │ ├── thread.php │ │ │ │ └── user.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ └── default.php │ │ ├── integrator │ │ │ └── manager.php │ │ ├── ios │ │ │ └── manager.php │ │ ├── logger │ │ │ └── manager.php │ │ ├── mail │ │ │ ├── classes │ │ │ │ ├── attachment-collection.php │ │ │ │ ├── attachment.php │ │ │ │ ├── enum.php │ │ │ │ ├── folder-collection.php │ │ │ │ ├── folder.php │ │ │ │ ├── ics.php │ │ │ │ ├── message-collection.php │ │ │ │ ├── message.php │ │ │ │ └── vcard.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── min │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── sieve │ │ │ ├── classes │ │ │ │ ├── enum.php │ │ │ │ └── filter.php │ │ │ └── manager.php │ │ ├── social │ │ │ ├── classes │ │ │ │ └── social.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ └── default.php │ │ ├── subscriptions │ │ │ ├── classes │ │ │ │ └── subscription.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── tenants │ │ │ ├── classes │ │ │ │ ├── socials.php │ │ │ │ └── tenant.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── twofactorauth │ │ │ ├── classes │ │ │ │ └── twofactorauth.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ └── default.php │ │ ├── users │ │ │ ├── classes │ │ │ │ ├── account.php │ │ │ │ ├── caluser.php │ │ │ │ ├── enum.php │ │ │ │ ├── identity.php │ │ │ │ └── user.php │ │ │ ├── manager.php │ │ │ └── storages │ │ │ │ ├── db │ │ │ │ ├── command_creator.php │ │ │ │ └── storage.php │ │ │ │ ├── default.php │ │ │ │ └── nodb │ │ │ │ └── storage.php │ │ ├── voice │ │ │ └── manager.php │ │ └── webmail │ │ │ ├── manager.php │ │ │ └── storages │ │ │ ├── db │ │ │ ├── command_creator.php │ │ │ └── storage.php │ │ │ ├── default.php │ │ │ └── nodb │ │ │ └── storage.php │ │ ├── net │ │ ├── abstract.php │ │ └── protocols │ │ │ ├── imap4.php │ │ │ ├── pop3.php │ │ │ ├── poppassd.php │ │ │ └── sieve.php │ │ ├── plugin.php │ │ ├── plugins │ │ ├── change-password.php │ │ ├── expand-attachment.php │ │ └── two-factor-auth.php │ │ ├── settings.php │ │ ├── twilio.php │ │ ├── utils.php │ │ ├── utils │ │ ├── get.php │ │ ├── post.php │ │ └── session.php │ │ └── xml.php ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ └── installed.json ├── other │ ├── CssToInlineStyles.php │ ├── Zip.php │ └── ZipStream.php └── recaptcha │ ├── LICENSE │ ├── README │ ├── VERSION │ └── recaptchalib.php ├── migration ├── calendar-sharing.php └── contacts.php ├── rest.php ├── robots.txt ├── skins ├── Blue │ ├── PIE │ │ ├── PIE.htc │ │ ├── PIE.php │ │ ├── PIE_IE678.js │ │ ├── PIE_IE678_uncompressed.js │ │ ├── PIE_IE9.js │ │ ├── PIE_IE9_uncompressed.js │ │ └── PIE_uncompressed.htc │ ├── fonts │ │ ├── afterlogic.eot │ │ ├── afterlogic.svg │ │ ├── afterlogic.ttf │ │ └── afterlogic.woff │ ├── images │ │ ├── ajax-loader.gif │ │ ├── background.png │ │ ├── background_overlay.png │ │ ├── calendar-icon.png │ │ ├── check.png │ │ ├── contacts-bg.png │ │ ├── filters.svg │ │ ├── logo.png │ │ ├── logo2x.png │ │ ├── mask.png │ │ ├── mask_rtl.png │ │ ├── sprites.png │ │ ├── sprites2x.png │ │ └── wait.gif │ ├── less │ │ ├── @theme.less │ │ ├── styles-mobile.less │ │ ├── styles.less │ │ └── text-fade.less │ ├── sharing.css │ ├── styles-mobile.css │ └── styles.css ├── BlueJeans │ ├── PIE │ │ ├── PIE.htc │ │ ├── PIE.php │ │ ├── PIE_IE678.js │ │ ├── PIE_IE678_uncompressed.js │ │ ├── PIE_IE9.js │ │ ├── PIE_IE9_uncompressed.js │ │ └── PIE_uncompressed.htc │ ├── fonts │ │ ├── afterlogic.eot │ │ ├── afterlogic.svg │ │ ├── afterlogic.ttf │ │ └── afterlogic.woff │ ├── images │ │ ├── ajax-loader.gif │ │ ├── background.jpg │ │ ├── calendar-icon.png │ │ ├── check.png │ │ ├── contacts-bg.png │ │ ├── filters.svg │ │ ├── logo.png │ │ ├── logo2x.png │ │ ├── mask.png │ │ ├── mask_rtl.png │ │ ├── sprites.png │ │ ├── sprites2x.png │ │ └── wait.gif │ ├── less │ │ ├── @theme.less │ │ ├── styles-mobile.less │ │ ├── styles.less │ │ └── text-fade.less │ ├── sharing.css │ ├── styles-mobile.css │ └── styles.css ├── DeepForest │ ├── PIE │ │ ├── PIE.htc │ │ ├── PIE.php │ │ ├── PIE_IE678.js │ │ ├── PIE_IE678_uncompressed.js │ │ ├── PIE_IE9.js │ │ ├── PIE_IE9_uncompressed.js │ │ └── PIE_uncompressed.htc │ ├── fonts │ │ ├── afterlogic.eot │ │ ├── afterlogic.svg │ │ ├── afterlogic.ttf │ │ └── afterlogic.woff │ ├── images │ │ ├── ajax-loader.gif │ │ ├── background.jpg │ │ ├── calendar-icon.png │ │ ├── check.png │ │ ├── contacts-bg.png │ │ ├── filters.svg │ │ ├── logo.png │ │ ├── logo2x.png │ │ ├── mask.png │ │ ├── mask_rtl.png │ │ ├── sprites.png │ │ ├── sprites2x.png │ │ └── wait.gif │ ├── less │ │ ├── @theme.less │ │ ├── styles-mobile.less │ │ ├── styles.less │ │ └── text-fade.less │ ├── license.txt │ ├── sharing.css │ ├── styles-mobile.css │ └── styles.css ├── Default │ ├── PIE │ │ ├── PIE.htc │ │ ├── PIE.php │ │ ├── PIE_IE678.js │ │ ├── PIE_IE678_uncompressed.js │ │ ├── PIE_IE9.js │ │ ├── PIE_IE9_uncompressed.js │ │ └── PIE_uncompressed.htc │ ├── fonts │ │ ├── afterlogic.eot │ │ ├── afterlogic.svg │ │ ├── afterlogic.ttf │ │ └── afterlogic.woff │ ├── images │ │ ├── _sprites.png │ │ ├── ajax-loader.gif │ │ ├── appstore.png │ │ ├── calendar-icon.png │ │ ├── check.png │ │ ├── contacts-bg.png │ │ ├── desktop-client.png │ │ ├── facebook-icon_9x18.png │ │ ├── google-icon_20x20.png │ │ ├── logo.png │ │ ├── logo2x.png │ │ ├── playmarket.png │ │ ├── progress.gif │ │ ├── sprites.png │ │ ├── sprites2x.png │ │ ├── twitter-icon_17x14.png │ │ └── wait.gif │ ├── less │ │ ├── @mixins.less │ │ ├── @theme.less │ │ ├── attachments-mobile.less │ │ ├── attachments.less │ │ ├── base-mobile.less │ │ ├── base.less │ │ ├── blockquote.less │ │ ├── contact-card.less │ │ ├── controls │ │ │ ├── _toolbar_icons.less │ │ │ ├── buttons.less │ │ │ ├── checkbox.less │ │ │ ├── dropdown-mobile.less │ │ │ ├── dropdown.less │ │ │ ├── flag.less │ │ │ ├── inputs.less │ │ │ ├── jquery-ui-overrides.less │ │ │ ├── pagination.less │ │ │ ├── scrollbar.less │ │ │ └── toolbar.less │ │ ├── dev.less │ │ ├── files.less │ │ ├── folders.less │ │ ├── fonts.less │ │ ├── grid-mobile.less │ │ ├── grid.less │ │ ├── helpers.less │ │ ├── html-editor.less │ │ ├── keyframes.less │ │ ├── notifications.less │ │ ├── phone-block.less │ │ ├── popups.less │ │ ├── quick-reply.less │ │ ├── screens.less │ │ ├── screens │ │ │ ├── calendar.less │ │ │ ├── compose-mobile.less │ │ │ ├── compose-tmp.less │ │ │ ├── compose.less │ │ │ ├── contacts-mobile.less │ │ │ ├── contacts.less │ │ │ ├── filestorage.less │ │ │ ├── helpdesk.less │ │ │ ├── login.less │ │ │ ├── mail-mobile.less │ │ │ ├── mail.less │ │ │ └── settings.less │ │ ├── search-block.less │ │ ├── styles-mobile.less │ │ ├── styles.less │ │ ├── tabsbar-mobile.less │ │ ├── tabsbar.less │ │ ├── text-fade.less │ │ ├── tmp.less │ │ └── volumer.less │ ├── sharing.css │ ├── styles-mobile.css │ └── styles.css ├── Funny │ ├── PIE │ │ ├── PIE.htc │ │ ├── PIE.php │ │ ├── PIE_IE678.js │ │ ├── PIE_IE678_uncompressed.js │ │ ├── PIE_IE9.js │ │ ├── PIE_IE9_uncompressed.js │ │ └── PIE_uncompressed.htc │ ├── fonts │ │ ├── afterlogic.eot │ │ ├── afterlogic.svg │ │ ├── afterlogic.ttf │ │ └── afterlogic.woff │ ├── images │ │ ├── ajax-loader.gif │ │ ├── background.jpg │ │ ├── calendar-icon.png │ │ ├── check.png │ │ ├── contacts-bg.png │ │ ├── filters.svg │ │ ├── logo.png │ │ ├── logo2x.png │ │ ├── mask.png │ │ ├── sprites.png │ │ ├── sprites2x.png │ │ └── wait.gif │ ├── less │ │ ├── @theme.less │ │ ├── styles-mobile.less │ │ ├── styles.less │ │ └── text-fade.less │ ├── sharing.css │ ├── styles-mobile.css │ └── styles.css ├── OpenWater │ ├── PIE │ │ ├── PIE.htc │ │ ├── PIE.php │ │ ├── PIE_IE678.js │ │ ├── PIE_IE678_uncompressed.js │ │ ├── PIE_IE9.js │ │ ├── PIE_IE9_uncompressed.js │ │ └── PIE_uncompressed.htc │ ├── fonts │ │ ├── afterlogic.eot │ │ ├── afterlogic.svg │ │ ├── afterlogic.ttf │ │ └── afterlogic.woff │ ├── images │ │ ├── ajax-loader.gif │ │ ├── background-blur.jpg │ │ ├── background.jpg │ │ ├── calendar-icon.png │ │ ├── check.png │ │ ├── contacts-bg.png │ │ ├── filters.svg │ │ ├── logo.png │ │ ├── mask.png │ │ ├── mask_rtl.png │ │ ├── sprites.png │ │ ├── sprites2x.png │ │ └── wait.gif │ ├── less │ │ ├── @theme.less │ │ ├── styles-mobile.less │ │ ├── styles.less │ │ └── text-fade.less │ ├── license.txt │ ├── sharing.css │ ├── styles-mobile.css │ └── styles.css ├── White │ ├── PIE │ │ ├── PIE.htc │ │ ├── PIE.php │ │ ├── PIE_IE678.js │ │ ├── PIE_IE678_uncompressed.js │ │ ├── PIE_IE9.js │ │ ├── PIE_IE9_uncompressed.js │ │ └── PIE_uncompressed.htc │ ├── fonts │ │ ├── afterlogic.eot │ │ ├── afterlogic.svg │ │ ├── afterlogic.ttf │ │ └── afterlogic.woff │ ├── images │ │ ├── ajax-loader.gif │ │ ├── calendar-icon.png │ │ ├── check.png │ │ ├── contacts-bg.png │ │ ├── logo.png │ │ ├── logo2x.png │ │ ├── sprites.png │ │ ├── sprites2x.png │ │ └── wait.gif │ ├── less │ │ ├── @theme.less │ │ ├── styles-mobile.less │ │ └── styles.less │ ├── sharing.css │ ├── styles-mobile.css │ └── styles.css ├── apple-icon.png └── wm_logo_140x140.png ├── static ├── css │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── libs.css │ └── libs.min.css └── js │ ├── .empty │ ├── app-filestorage-pub.js │ ├── app-filestorage-pub.min.js │ ├── app-mobile.js │ ├── app-mobile.min.js │ ├── app.js │ ├── app.min.js │ ├── extutils.js │ ├── libs.js │ ├── openpgp.js │ └── swfobject.js └── templates ├── CalendarEventInvite.html ├── CalendarEventInviteExternal.html ├── CalendarEventNotificaton.html ├── FilesPub.html ├── Index.html ├── Ios.html ├── NotFound.html ├── helpdesk ├── agent.post.html ├── user.forgot.html ├── user.post.html ├── user.post.new.html ├── user.post.notification.html ├── user.registration.fetcher.html └── user.registration.html └── views ├── Calendar ├── CalendarListItem.html ├── CalendarListItemMenu.html ├── CalendarReminderPartReminders.html ├── CalendarReminderPartText.html └── CalendarViewModel.html ├── CalendarPubLayout.html ├── Common ├── ColorPickerViewModel.html ├── ContactCard.html ├── FileViewModel.html ├── HeaderMobileViewModel.html ├── HeaderViewModel.html ├── HtmlEditorViewModel.html ├── InformationViewModel.html ├── PageSwitcherViewModel.html └── PhoneViewModel.html ├── Contacts ├── ContactList.html ├── ContactsImportViewModel.html ├── ContactsViewModel.html ├── EditContactViewModel.html ├── EditGroupViewModel.html ├── GroupList.html ├── Toolbar.html ├── ViewContactViewModel.html └── ViewGroupViewModel.html ├── FileStorage ├── FileList.html ├── FileStorageViewModel.html ├── FolderItem.html ├── StorageList.html └── Toolbar.html ├── FileStoragePubLayout.html ├── Helpdesk ├── Header.html ├── HelpdeskViewModel.html ├── Login.html ├── NewThread.html ├── QuickReply.html ├── SettingsExt.html ├── ThreadItem.html ├── ThreadItemExt.html ├── ThreadsList.html ├── ThreadsListExt.html ├── ViewThread.html ├── ViewThreadExt.html └── ViewThreadInNewWindow.html ├── HelpdeskLayout.html ├── Layout.html ├── Login ├── ForgotViewModel.html ├── LoginAdvancedViewModel.html ├── LoginViewModel.html ├── RegisterViewModel.html └── WrapLoginViewModel.html ├── Mail ├── AppointmentViewModel.html ├── ComposeViewModel.html ├── FolderListViewModel.html ├── FolderViewModel.html ├── LayoutSidePane │ ├── MailViewModel.html │ ├── MessagePaneViewModel.html │ └── Toolbar.html ├── MessageListItemViewModel.html ├── MessageListViewModel.html ├── MoveToFolderItem.html ├── PrintMessageViewModel.html └── VcardAttachmentViewModel.html ├── Popups ├── AccountCreateIdentityPopupViewModel.html ├── AccountCreatePopupViewModel.html ├── AlertPopupViewModel.html ├── Calendar │ ├── CalendarPopupViewModel.html │ ├── CalendarSelectCalendarsPopupViewModel.html │ ├── EditRecurrenceEventPopupViewModel.html │ ├── EventPopupViewModel.html │ ├── GetLinkPopupViewModel.html │ ├── ImportPopupViewModel.html │ └── SharePopupViewModel.html ├── ChangePasswordPopupViewModel.html ├── ComposePopupViewModel.html ├── ConfirmAnotherMessageComposedPopupViewModel.html ├── ConfirmPopupViewModel.html ├── ContactCreatePopupViewModel.html ├── FetcherAddPopupViewModel.html ├── FileStorage │ ├── FileStoragePopupViewModel.html │ ├── FolderCreatePopupViewModel.html │ ├── LinkCreatePopupViewModel.html │ ├── RenamePopupViewModel.html │ └── SharePopupViewModel.html ├── FolderCreatePopupViewModel.html ├── FolderSystemPopupViewModel.html ├── GenerateOpenPgpKeyPopupViewModel.html ├── ImportOpenPgpKeyPopupViewModel.html ├── OpenPgpEncryptPopupViewModel.html ├── PhonePopupViewModel.html ├── PlayerPopupViewModel.html └── ShowOpenPgpKeyArmorPopupViewModel.html └── Settings ├── AccountAutoresponderViewModel.html ├── AccountFilterPartAction.html ├── AccountFilterPartCondition.html ├── AccountFilterPartDependedText.html ├── AccountFilterPartField.html ├── AccountFilterPartFolder.html ├── AccountFilterPartString.html ├── AccountFilterPartText.html ├── AccountFiltersViewModel.html ├── AccountFolderItem.html ├── AccountFolderItemMovedWithMouse.html ├── AccountFoldersViewModel.html ├── AccountForwardViewModel.html ├── AccountPropertiesViewModel.html ├── AccountSignatureViewModel.html ├── CalendarSettingsViewModel.html ├── CloudStorageSettingsViewModel.html ├── CommonSettingsViewModel.html ├── EmailAccountsSettingsViewModel.html ├── FetcherIncomingViewModel.html ├── FetcherOutgoingViewModel.html ├── HelpdeskSettingsViewModel.html ├── IdentityPropertiesViewModel.html ├── MobileSyncSettingsViewModel.html ├── OutLookSyncSettingsViewModel.html ├── PgpSettingsViewModel.html ├── ResetPasswordViewModel.html ├── ServerPropertiesViewModel.html └── SettingsViewModel.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 7.7.9 -------------------------------------------------------------------------------- /adminpanel/VERSION: -------------------------------------------------------------------------------- 1 | 7.7.9 -------------------------------------------------------------------------------- /adminpanel/core/cadminpanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/cadminpanel.php -------------------------------------------------------------------------------- /adminpanel/core/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/constants.php -------------------------------------------------------------------------------- /adminpanel/core/lang2js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/lang2js.php -------------------------------------------------------------------------------- /adminpanel/core/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/modules.php -------------------------------------------------------------------------------- /adminpanel/core/screens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/screens.php -------------------------------------------------------------------------------- /adminpanel/core/screens/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/screens/login.php -------------------------------------------------------------------------------- /adminpanel/core/screens/simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/screens/simple.php -------------------------------------------------------------------------------- /adminpanel/core/screens/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/screens/standard.php -------------------------------------------------------------------------------- /adminpanel/core/screens/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/screens/table.php -------------------------------------------------------------------------------- /adminpanel/core/templates/copyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/templates/copyright.php -------------------------------------------------------------------------------- /adminpanel/core/templates/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/templates/error.php -------------------------------------------------------------------------------- /adminpanel/core/templates/login-warning.php: -------------------------------------------------------------------------------- 1 |
2 | Data->PrintValue('TxtDesc'); ?> 3 |
-------------------------------------------------------------------------------- /adminpanel/core/templates/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/templates/login.php -------------------------------------------------------------------------------- /adminpanel/core/templates/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/templates/main.php -------------------------------------------------------------------------------- /adminpanel/core/templates/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/templates/standard.php -------------------------------------------------------------------------------- /adminpanel/core/templates/table-main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/templates/table-main.php -------------------------------------------------------------------------------- /adminpanel/core/templates/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/templates/table.php -------------------------------------------------------------------------------- /adminpanel/core/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/core/utils.php -------------------------------------------------------------------------------- /adminpanel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/index.php -------------------------------------------------------------------------------- /adminpanel/modules/common/inc/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/inc/ajax.php -------------------------------------------------------------------------------- /adminpanel/modules/common/inc/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/inc/constants.php -------------------------------------------------------------------------------- /adminpanel/modules/common/inc/pop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/inc/pop.php -------------------------------------------------------------------------------- /adminpanel/modules/common/inc/populate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/inc/populate.php -------------------------------------------------------------------------------- /adminpanel/modules/common/inc/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/inc/post.php -------------------------------------------------------------------------------- /adminpanel/modules/common/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/index.php -------------------------------------------------------------------------------- /adminpanel/modules/common/js/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/js/db.js -------------------------------------------------------------------------------- /adminpanel/modules/common/js/domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/js/domains.js -------------------------------------------------------------------------------- /adminpanel/modules/common/templates/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/common/templates/db.php -------------------------------------------------------------------------------- /adminpanel/modules/common/templates/main-top-edit-domain-name.php: -------------------------------------------------------------------------------- 1 |

Data->PrintInputValue('strDomainName'); ?>

-------------------------------------------------------------------------------- /adminpanel/modules/webmail/inc/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/inc/ajax.php -------------------------------------------------------------------------------- /adminpanel/modules/webmail/inc/blank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/inc/blank.php -------------------------------------------------------------------------------- /adminpanel/modules/webmail/inc/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/inc/constants.php -------------------------------------------------------------------------------- /adminpanel/modules/webmail/inc/pop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/inc/pop.php -------------------------------------------------------------------------------- /adminpanel/modules/webmail/inc/populate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/inc/populate.php -------------------------------------------------------------------------------- /adminpanel/modules/webmail/inc/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/inc/post.php -------------------------------------------------------------------------------- /adminpanel/modules/webmail/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/index.php -------------------------------------------------------------------------------- /adminpanel/modules/webmail/js/domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/js/domains.js -------------------------------------------------------------------------------- /adminpanel/modules/webmail/js/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/modules/webmail/js/system.js -------------------------------------------------------------------------------- /adminpanel/static/images/close-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/close-popup.png -------------------------------------------------------------------------------- /adminpanel/static/images/domsel_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/domsel_arrow.gif -------------------------------------------------------------------------------- /adminpanel/static/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/dot.png -------------------------------------------------------------------------------- /adminpanel/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/favicon.ico -------------------------------------------------------------------------------- /adminpanel/static/images/icons/M.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/icons/M.gif -------------------------------------------------------------------------------- /adminpanel/static/images/icons/U.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/icons/U.gif -------------------------------------------------------------------------------- /adminpanel/static/images/icons/U_disable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/icons/U_disable.gif -------------------------------------------------------------------------------- /adminpanel/static/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/mail.png -------------------------------------------------------------------------------- /adminpanel/static/images/menu/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/menu/arrow_down.gif -------------------------------------------------------------------------------- /adminpanel/static/images/menu/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/menu/arrow_up.gif -------------------------------------------------------------------------------- /adminpanel/static/images/menu/attachment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/menu/attachment.gif -------------------------------------------------------------------------------- /adminpanel/static/images/menu/check_mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/menu/check_mail.gif -------------------------------------------------------------------------------- /adminpanel/static/images/menu/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/menu/delete.gif -------------------------------------------------------------------------------- /adminpanel/static/images/menu/flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/menu/flag.gif -------------------------------------------------------------------------------- /adminpanel/static/images/menu/forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afterlogic/webmail-lite/HEAD/adminpanel/static/images/menu/forward.gif -------------------------------------------------------------------------------- /adminpanel/static/images/menu/index.php: -------------------------------------------------------------------------------- 1 |