├── .gitignore ├── .gitmodules ├── .run ├── start calendar.run.xml ├── start calendartimetracking.run.xml ├── start core.run.xml ├── start maildomains.run.xml ├── start projects.run.xml ├── start registration.run.xml └── start supportclient.run.xml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── RELEASE.TXT ├── SECURITY.md ├── TODO.TXT ├── jsconfig.json ├── qodana.yaml ├── scripts ├── build.sh ├── cleanup.sql ├── deploy.php ├── install-composer.sh ├── install-ioncube.sh ├── install-npm.sh ├── merge-branch.sh ├── sg_install.sh ├── update-git.sh └── watch.sh ├── tests ├── bootstrap-install.php ├── bootstrap-none.php ├── bootstrap-upgrade.php ├── bootstrap.php ├── config.ini ├── config.php ├── go │ ├── api │ │ └── PageTest.php │ ├── base │ │ └── mail │ │ │ └── MessageTest.php │ ├── core │ │ ├── AppTest.php │ │ ├── LanguageTest.php │ │ ├── Notify.php │ │ ├── TemplateParserTest.php │ │ ├── customfields │ │ │ └── Field.php │ │ ├── db │ │ │ ├── ConnectionTest.php │ │ │ ├── QueryTest.php │ │ │ └── TableTest.php │ │ ├── fs │ │ │ ├── BlobTest.php │ │ │ └── FolderTest.php │ │ ├── jmap │ │ │ └── EntityControllerTest.php │ │ ├── ldap │ │ │ └── RecordTest.php │ │ ├── mail │ │ │ └── AddressListTest.php │ │ ├── model │ │ │ └── UserTest.php │ │ ├── orm │ │ │ └── EntityTest.php │ │ └── util │ │ │ ├── JSONTest.php │ │ │ └── StringUtilTest.php │ └── modules │ │ └── community │ │ ├── addressbook │ │ └── model │ │ │ └── ContactTest.php │ │ ├── calendar │ │ └── model │ │ │ └── EventTest.php │ │ └── history │ │ └── model │ │ └── LogEntryTest.php ├── go62test.sql ├── phpstan.neon ├── phpunit.xml ├── static │ ├── invite.eml │ ├── ios-invite.eml │ └── outlook-invite.eml ├── test │ └── AppTest.php └── upgradetest │ ├── 68data │ ├── data │ │ ├── 2f │ │ │ └── df │ │ │ │ └── 2fdf265142ae50288384997cb0a27f22f43df0c6 │ │ └── 8d │ │ │ └── 84 │ │ │ └── 8d844f9e549709a9541108171e7d67b15fa03125 │ ├── defuse-crypto.txt │ ├── locks │ │ ├── cron.lock │ │ ├── jmap-set-lock.lock │ │ └── upgrade.lock │ └── tmp │ │ └── find │ │ └── justnewenough.txt │ └── go68.sql └── www ├── GO.php ├── api ├── auth.php ├── doc.php ├── download.php ├── jmap.php ├── oauth.php ├── page.php ├── sse.php ├── thumb.php ├── up.php └── upload.php ├── cli.php ├── composer.json ├── composer.lock ├── config.php.example ├── controller ├── AclGroupController.php ├── AdvancedSearchController.php ├── AuthController.php ├── BatchEditController.php ├── CoreController.php ├── CronController.php ├── ExportController.php ├── ExternalController.php ├── LinkFolderController.php ├── MaintenanceController.php ├── ReminderController.php ├── SearchController.php └── SettingsController.php ├── cron.php ├── favicon.ico ├── go ├── GO.php ├── base │ ├── Config.php │ ├── Environment.php │ ├── Language.php │ ├── Model.php │ ├── Module.php │ ├── ModuleCollection.php │ ├── Observable.php │ ├── Request.php │ ├── Router.php │ ├── Session.php │ ├── authorized │ │ └── Actions.php │ ├── cache │ │ ├── Apcu.php │ │ ├── CacheInterface.php │ │ └── None.php │ ├── component │ │ ├── MultiSelectGrid.php │ │ ├── Plupload.php │ │ └── SummaryLog.php │ ├── controller │ │ ├── AbstractController.php │ │ ├── AbstractExportController.php │ │ ├── AbstractJsonController.php │ │ ├── AbstractModelController.php │ │ ├── AbstractMultiSelectModelController.php │ │ └── AbstractSyncController.php │ ├── cron │ │ ├── AbstractCron.php │ │ ├── CalculateDiskUsage.php │ │ ├── CronCollection.php │ │ ├── CronGroup.php │ │ ├── CronJob.php │ │ ├── CronSettings.php │ │ ├── CronUser.php │ │ └── EmailReminders.php │ ├── csv │ │ ├── Reader.php │ │ └── Writer.php │ ├── data │ │ ├── AbstractStore.php │ │ ├── ArrayStore.php │ │ ├── Column.php │ │ ├── ColumnModel.php │ │ ├── DbStore.php │ │ ├── JsonResponse.php │ │ └── Store.php │ ├── db │ │ ├── ActiveRecord.php │ │ ├── ActiveStatement.php │ │ ├── Columns.php │ │ ├── Connection.php │ │ ├── FindCriteria.php │ │ ├── FindParams.php │ │ ├── MultilingualActiveRecord.php │ │ ├── PDO.php │ │ ├── Query.php │ │ ├── Statement.php │ │ ├── Transaction.php │ │ └── Utils.php │ ├── exception │ │ ├── AccessDenied.php │ │ ├── BadPassword.php │ │ ├── CliOnly.php │ │ ├── Database.php │ │ ├── InsufficientDiskspace.php │ │ ├── MissingParameter.php │ │ ├── NoCron.php │ │ ├── NotFound.php │ │ ├── OtherLoginLocation.php │ │ ├── PasswordNeedsChange.php │ │ ├── RelationDeleteRestrict.php │ │ ├── Save.php │ │ ├── SecurityTokenMismatch.php │ │ ├── Validation.php │ │ └── ViesDown.php │ ├── export │ │ ├── AbstractExport.php │ │ ├── ExportCSV.php │ │ ├── ExportHTML.php │ │ ├── ExportPDF.php │ │ ├── ExportXLS.php │ │ └── Settings.php │ ├── fs │ │ ├── Base.php │ │ ├── CsvFile.php │ │ ├── File.php │ │ ├── Folder.php │ │ ├── LogFile.php │ │ ├── MemoryFile.php │ │ ├── XlsFile.php │ │ ├── Zip.php │ │ └── mime.types │ ├── html │ │ ├── Checkbox.php │ │ ├── Error.php │ │ ├── Form.php │ │ ├── Hidden.php │ │ ├── Input.php │ │ ├── Password.php │ │ ├── Radio.php │ │ ├── Reset.php │ │ ├── Scripts.php │ │ ├── Select.php │ │ ├── Submit.php │ │ └── Textarea.php │ ├── ldap │ │ ├── Connection.php │ │ ├── Record.php │ │ └── Result.php │ ├── mail │ │ ├── AdminNotifier.php │ │ ├── AttachableInterface.php │ │ ├── EmailRecipients.php │ │ ├── Imap.php │ │ ├── ImapBase.php │ │ ├── ImapBodyStruct.php │ │ ├── Mailer.php │ │ ├── Message.php │ │ ├── MimeDecode.php │ │ ├── SmimeMessage.php │ │ ├── SystemMessage.php │ │ ├── Utils.php │ │ └── exception │ │ │ ├── ImapAuthenticationFailedException.php │ │ │ └── MailboxNotFound.php │ ├── model │ │ ├── AbstractExport.php │ │ ├── AbstractSettingsCollection.php │ │ ├── AbstractUserDefaultModel.php │ │ ├── Acl.php │ │ ├── AclUsersGroups.php │ │ ├── AdvancedSearch.php │ │ ├── Client.php │ │ ├── Group.php │ │ ├── Grouped.php │ │ ├── Holiday.php │ │ ├── ModelCache.php │ │ ├── ModelCollection.php │ │ ├── ModelType.php │ │ ├── Module.php │ │ ├── Reminder.php │ │ ├── ReminderUser.php │ │ ├── SavedExport.php │ │ ├── SearchCacheRecord.php │ │ ├── Setting.php │ │ ├── State.php │ │ ├── Template.php │ │ ├── TemplateGroup.php │ │ ├── User.php │ │ └── UserGroup.php │ ├── rpc │ │ └── AbstractController.php │ ├── storeexport │ │ ├── AbstractExport.php │ │ ├── ExportCSV.php │ │ ├── ExportHTML.php │ │ ├── ExportPDF.php │ │ ├── ExportXLS.php │ │ └── Settings.php │ ├── util │ │ ├── ArrayUtil.php │ │ ├── Cli.php │ │ ├── Common.php │ │ ├── ConfigEditor.php │ │ ├── Cron.php │ │ ├── Crypt.php │ │ ├── Date.php │ │ ├── Fpdi.php │ │ ├── Ftp.php │ │ ├── Html2Text.php │ │ ├── HtmlReplacer.php │ │ ├── Http.php │ │ ├── HttpClient.php │ │ ├── Image.php │ │ ├── Number.php │ │ ├── Odf.php │ │ ├── Pdf.php │ │ ├── PdfGantt.php │ │ ├── ReflectionClass.php │ │ ├── SQL.php │ │ ├── ScriptLoader.php │ │ ├── SpellChecker.php │ │ ├── StringHelper.php │ │ ├── TagParser.php │ │ ├── TemplateParser.php │ │ ├── UUID.php │ │ ├── Validate.php │ │ ├── XMLRPCClient.php │ │ ├── charset │ │ │ └── Xmac.php │ │ ├── date │ │ │ ├── DateTime.php │ │ │ └── RecurrencePattern.php │ │ ├── icalendar │ │ │ ├── DateTimeParser.php │ │ │ ├── RRuleIterator.php │ │ │ └── Rrule.php │ │ └── minify │ │ │ ├── CSSMin.php │ │ │ └── JSMin.php │ ├── view │ │ ├── AbstractView.php │ │ ├── ExportView.php │ │ ├── Extjs3.php │ │ ├── FileView.php │ │ ├── JsonView.php │ │ └── Theme.php │ ├── vobject │ │ ├── Iterator.php │ │ ├── Reader.php │ │ ├── VCalendar.php │ │ └── VTimezone.php │ └── wbxml │ │ ├── Convertor.php │ │ ├── Decoder.php │ │ └── Encoder.php ├── core │ ├── App.php │ ├── Controller.php │ ├── Debugger.php │ ├── Environment.php │ ├── ErrorHandler.php │ ├── Installer.php │ ├── Language.php │ ├── Module.php │ ├── Settings.php │ ├── SettingsEntity.php │ ├── Singleton.php │ ├── SingletonTrait.php │ ├── TemplateParser.php │ ├── acl │ │ └── model │ │ │ ├── AclEntity.php │ │ │ ├── AclInheritEntity.php │ │ │ ├── AclItemEntity.php │ │ │ ├── AclOwnerEntity.php │ │ │ ├── AclSetterTrait.php │ │ │ └── SingleOwnerEntity.php │ ├── auth │ │ ├── Authenticate.php │ │ ├── BaseAuthenticator.php │ │ ├── DomainProvider.php │ │ ├── ForcePasswordChange.php │ │ ├── Method.php │ │ ├── Password.php │ │ ├── PrimaryAuthenticator.php │ │ ├── SecondaryAuthenticator.php │ │ ├── State.php │ │ └── TemporaryState.php │ ├── cache │ │ ├── Apcu.php │ │ ├── CacheInterface.php │ │ ├── Disk.php │ │ ├── Memcached.php │ │ └── None.php │ ├── cli │ │ ├── Router.php │ │ ├── State.php │ │ └── controller │ │ │ ├── System.php │ │ │ └── cleanup.sql │ ├── controller │ │ ├── Acl.php │ │ ├── Alert.php │ │ ├── AuthAllowGroup.php │ │ ├── CronJobSchedule.php │ │ ├── EmailTemplate.php │ │ ├── EntityFilter.php │ │ ├── Field.php │ │ ├── FieldSet.php │ │ ├── Group.php │ │ ├── ImportMapping.php │ │ ├── Link.php │ │ ├── Module.php │ │ ├── Notify.php │ │ ├── OauthClient.php │ │ ├── PdfTemplate.php │ │ ├── Principal.php │ │ ├── Search.php │ │ ├── Settings.php │ │ ├── SmtpAccount.php │ │ ├── SpreadSheetExport.php │ │ ├── System.php │ │ └── User.php │ ├── convert │ │ └── UserSpreadsheet.php │ ├── cron │ │ ├── BuildSearchCache.php │ │ ├── EmailAlerts.php │ │ └── GarbageCollection.php │ ├── csv │ │ └── Reader.php │ ├── customfield │ │ ├── Attachments.php │ │ ├── Base.php │ │ ├── Checkbox.php │ │ ├── Data.php │ │ ├── Date.php │ │ ├── DateTime.php │ │ ├── EncryptedText.php │ │ ├── FunctionField.php │ │ ├── Group.php │ │ ├── Html.php │ │ ├── MultiSelect.php │ │ ├── Notes.php │ │ ├── Number.php │ │ ├── Select.php │ │ ├── TemplateField.php │ │ ├── Text.php │ │ ├── TextArea.php │ │ ├── User.php │ │ └── YesNo.php │ ├── data │ │ ├── ArrayableInterface.php │ │ ├── MagicPropertiesTrait.php │ │ ├── Model.php │ │ ├── Store.php │ │ ├── convert │ │ │ ├── AbstractConverter.php │ │ │ ├── Json.php │ │ │ └── Spreadsheet.php │ │ └── exception │ │ │ └── NotArrayable.php │ ├── dav │ │ ├── auth │ │ │ └── BasicBackend.php │ │ ├── davacl │ │ │ ├── PrincipalBackend.php │ │ │ ├── PrincipalCollection.php │ │ │ └── User.php │ │ ├── index.php │ │ └── schedule │ │ │ └── IMipPlugin.php │ ├── db │ │ ├── Column.php │ │ ├── Connection.php │ │ ├── Criteria.php │ │ ├── Database.php │ │ ├── DbException.php │ │ ├── Expression.php │ │ ├── Query.php │ │ ├── QueryBuilder.php │ │ ├── Statement.php │ │ ├── Table.php │ │ └── Utils.php │ ├── event │ │ ├── EventEmitterTrait.php │ │ └── Listeners.php │ ├── exception │ │ ├── ConfigurationException.php │ │ ├── Forbidden.php │ │ ├── JsonPointerException.php │ │ ├── NotFound.php │ │ ├── RememberMeTheft.php │ │ ├── TLSException.php │ │ ├── Unauthorized.php │ │ └── Unavailable.php │ ├── fs │ │ ├── Blob.php │ │ ├── File.php │ │ ├── FileSystemObject.php │ │ ├── Folder.php │ │ ├── GarbageCollector.php │ │ ├── MemoryFile.php │ │ ├── MetaData.php │ │ ├── TempFolder.php │ │ └── datareader │ │ │ ├── BinaryFileReader.php │ │ │ └── ID3Reader.php │ ├── http │ │ ├── Client.php │ │ ├── Exception.php │ │ ├── PostResponseProcessor.php │ │ ├── Request.php │ │ ├── Response.php │ │ └── Router.php │ ├── imap │ │ ├── Connection.php │ │ ├── IMAPDetector.php │ │ ├── Mailbox.php │ │ ├── Message.php │ │ ├── MultiPart.php │ │ ├── Part.php │ │ ├── SinglePart.php │ │ ├── Streamer.php │ │ ├── Structure.php │ │ └── Utils.php │ ├── install │ │ ├── MigrateCustomFields63to64.php │ │ ├── install.sql │ │ └── updates.php │ ├── jmap │ │ ├── Capabilities.php │ │ ├── Entity.php │ │ ├── EntityController.php │ │ ├── ProblemDetails.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Router.php │ │ ├── SetError.php │ │ ├── State.php │ │ └── exception │ │ │ ├── CannotCalculateChanges.php │ │ │ ├── InvalidArguments.php │ │ │ ├── InvalidResultReference.php │ │ │ ├── StateMismatch.php │ │ │ ├── UnsupportedFilter.php │ │ │ └── UnsupportedSort.php │ ├── language │ │ ├── ar.php │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── en_au.php │ │ ├── en_gb.php │ │ ├── en_ph.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fi.php │ │ ├── fr.php │ │ ├── he.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sl.php │ │ ├── sv.php │ │ ├── th.php │ │ ├── tr.php │ │ └── zh_tw.php │ ├── ldap │ │ ├── Connection.php │ │ ├── Record.php │ │ └── Result.php │ ├── mail │ │ ├── Address.php │ │ ├── AddressList.php │ │ ├── Attachment.php │ │ ├── Mailer.php │ │ ├── Message.php │ │ ├── MimeDecode.php │ │ ├── PHPMailer.php │ │ ├── PHPMailerSMTP.php │ │ └── Util.php │ ├── model │ │ ├── Acl.php │ │ ├── AclGroup.php │ │ ├── Alert.php │ │ ├── AuthAllowGroup.php │ │ ├── Client.php │ │ ├── CronJob.php │ │ ├── CronJobSchedule.php │ │ ├── EmailTemplate.php │ │ ├── EmailTemplateAttachment.php │ │ ├── EntityFilter.php │ │ ├── Field.php │ │ ├── FieldSet.php │ │ ├── Group.php │ │ ├── ImportMapping.php │ │ ├── Link.php │ │ ├── Module.php │ │ ├── OauthAccessToken.php │ │ ├── OauthAuthCode.php │ │ ├── OauthClient.php │ │ ├── OauthRefreshToken.php │ │ ├── OauthScope.php │ │ ├── OauthUser.php │ │ ├── PdfBlock.php │ │ ├── PdfTemplate.php │ │ ├── Permission.php │ │ ├── Principal.php │ │ ├── PushDispatcher.php │ │ ├── RememberMe.php │ │ ├── Search.php │ │ ├── Settings.php │ │ ├── SmtpAccount.php │ │ ├── SpreadSheetExport.php │ │ ├── Token.php │ │ ├── User.php │ │ └── UserGroup.php │ ├── oauth │ │ └── server │ │ │ └── repositories │ │ │ ├── AccessTokenRepository.php │ │ │ ├── AuthCodeRepository.php │ │ │ ├── ClientRepository.php │ │ │ ├── RefreshTokenRepository.php │ │ │ ├── ScopeRepository.php │ │ │ └── UserRepository.php │ ├── orm │ │ ├── CustomFieldsModel.php │ │ ├── CustomFieldsTrait.php │ │ ├── Entity.php │ │ ├── EntityType.php │ │ ├── Filters.php │ │ ├── MappedTable.php │ │ ├── Mapping.php │ │ ├── PrincipalTrait.php │ │ ├── Property.php │ │ ├── Query.php │ │ ├── Relation.php │ │ ├── SearchableTrait.php │ │ ├── UserProperty.php │ │ └── exception │ │ │ └── SaveException.php │ ├── util │ │ ├── ArrayObject.php │ │ ├── BackgroundProcess.php │ │ ├── ClassFinder.php │ │ ├── Cli.php │ │ ├── Color.php │ │ ├── Crypt.php │ │ ├── DateTime.php │ │ ├── Ftp.php │ │ ├── Geolocation.php │ │ ├── Image.php │ │ ├── IniFile.php │ │ ├── JSON.php │ │ ├── Lock.php │ │ ├── Password.php │ │ ├── PdfRenderer.php │ │ ├── PdfTemplateRenderer.php │ │ ├── QRcode.php │ │ ├── Recurrence.php │ │ ├── StringUtil.php │ │ ├── Time.php │ │ ├── UUID.php │ │ ├── Url.php │ │ └── tcpdf_config.php │ ├── validate │ │ ├── CountryCode.php │ │ ├── ErrorCode.php │ │ └── ValidationTrait.php │ ├── views │ │ └── extjs3 │ │ │ ├── ActivityWatcher.js │ │ │ ├── Alert.js │ │ │ ├── Array.js │ │ │ ├── AuthenticationManager.js │ │ │ ├── BrowserStorage.js │ │ │ ├── Element.js │ │ │ ├── Entities.js │ │ │ ├── Entity.js │ │ │ ├── GOUIWrapper.js │ │ │ ├── Jmap.js │ │ │ ├── Mail.js │ │ │ ├── Module.js │ │ │ ├── Modules.js │ │ │ ├── NavGrid.js │ │ │ ├── NavMenu.js │ │ │ ├── Notifier.js │ │ │ ├── PasswordPrompt.js │ │ │ ├── QRCodeComponent.js │ │ │ ├── Relations.js │ │ │ ├── Router.js │ │ │ ├── SearchField.js │ │ │ ├── Stores.js │ │ │ ├── String.js │ │ │ ├── TimeZones.js │ │ │ ├── Translate.js │ │ │ ├── Uploader.js │ │ │ ├── User.js │ │ │ ├── Window.js │ │ │ ├── Wizard.js │ │ │ ├── chart │ │ │ ├── BarChart.js │ │ │ ├── ChartComponent.js │ │ │ ├── LineChart.js │ │ │ └── PieChart.js │ │ │ ├── cron │ │ │ ├── CronDialog.js │ │ │ ├── NewCronDialog.js │ │ │ ├── ParametersPanel.js │ │ │ ├── PeriodGrid.js │ │ │ ├── Stores.js │ │ │ └── SystemSettingsCronGrid.js │ │ │ ├── customfields │ │ │ ├── CustomFieldRelationGrid.js │ │ │ ├── CustomFields.js │ │ │ ├── DetailPanel.js │ │ │ ├── EditFieldSetDialog.js │ │ │ ├── EntityDialog.js │ │ │ ├── EntityPanel.js │ │ │ ├── ExportDialog.js │ │ │ ├── FieldDialog.js │ │ │ ├── FieldSetCombo.js │ │ │ ├── FieldSetDialog.js │ │ │ ├── FormFieldSet.js │ │ │ ├── SystemSettingsPanel.js │ │ │ └── type │ │ │ │ ├── Attachments.js │ │ │ │ ├── AttachmentsDialog.js │ │ │ │ ├── Checkbox.js │ │ │ │ ├── CheckboxDialog.js │ │ │ │ ├── Data.js │ │ │ │ ├── DataDialog.js │ │ │ │ ├── Date.js │ │ │ │ ├── DateDialog.js │ │ │ │ ├── DateTime.js │ │ │ │ ├── DateTimeDialog.js │ │ │ │ ├── EncryptedText.js │ │ │ │ ├── FunctionField.js │ │ │ │ ├── FunctionFieldDialog.js │ │ │ │ ├── Group.js │ │ │ │ ├── GroupDialog.js │ │ │ │ ├── Html.js │ │ │ │ ├── HtmlDialog.js │ │ │ │ ├── MultiSelect.js │ │ │ │ ├── MultiSelectDialog.js │ │ │ │ ├── Notes.js │ │ │ │ ├── NotesDialog.js │ │ │ │ ├── Number.js │ │ │ │ ├── NumberDialog.js │ │ │ │ ├── OptionDialog.js │ │ │ │ ├── Select.js │ │ │ │ ├── SelectDialog.js │ │ │ │ ├── SelectOptionsTree.js │ │ │ │ ├── TemplateField.js │ │ │ │ ├── TemplateFieldDialog.js │ │ │ │ ├── Text.js │ │ │ │ ├── TextArea.js │ │ │ │ ├── TextAreaDialog.js │ │ │ │ ├── TextDialog.js │ │ │ │ ├── TreeSelectField.js │ │ │ │ ├── User.js │ │ │ │ ├── UserDialog.js │ │ │ │ ├── YesNo.js │ │ │ │ └── YesNoDialog.js │ │ │ ├── data │ │ │ ├── EntityStore.js │ │ │ ├── EntityStoreProxy.js │ │ │ ├── FilterTrait.js │ │ │ ├── GroupingStore.js │ │ │ ├── JmapProxy.js │ │ │ ├── Store.js │ │ │ ├── StoreTrait.js │ │ │ └── Types.js │ │ │ ├── defaultpermissions │ │ │ ├── DefaultPermissionsPanel.js │ │ │ ├── ShareWindow.js │ │ │ └── SystemSettingsPanel.js │ │ │ ├── detail │ │ │ ├── AddButton.js │ │ │ ├── CreateModifyPanel.js │ │ │ ├── Panel.js │ │ │ ├── Property.js │ │ │ ├── PropertyList.js │ │ │ ├── ReadMore.js │ │ │ └── ScrollToTopButton.js │ │ │ ├── emailtemplate │ │ │ ├── GridPanel.js │ │ │ ├── TemplateDialog.js │ │ │ └── TemplateFieldset.js │ │ │ ├── filter │ │ │ ├── Condition.js │ │ │ ├── Conditions.js │ │ │ ├── FieldSet.js │ │ │ ├── FilterAddButton.js │ │ │ ├── FilterCombo.js │ │ │ ├── FilterDialog.js │ │ │ ├── FilterGrid.js │ │ │ ├── FilterPanel.js │ │ │ ├── VariableFilterDialog.js │ │ │ ├── VariableFilterPanel.js │ │ │ ├── types │ │ │ │ ├── date.js │ │ │ │ ├── number.js │ │ │ │ ├── select.js │ │ │ │ ├── string.js │ │ │ │ └── subconditions.js │ │ │ └── variabletypes │ │ │ │ ├── date.js │ │ │ │ ├── number.js │ │ │ │ ├── select.js │ │ │ │ └── string.js │ │ │ ├── form │ │ │ ├── ArrayFieldGrid.js │ │ │ ├── AttachmentsField.js │ │ │ ├── BatchEditDialog.js │ │ │ ├── CheckboxGroup.js │ │ │ ├── Chips.js │ │ │ ├── ComboBox.js │ │ │ ├── ComboBoxReset.js │ │ │ ├── DateField.js │ │ │ ├── DateRangeField.js │ │ │ ├── DateTimeField.js │ │ │ ├── Dialog.js │ │ │ ├── DurationField.js │ │ │ ├── EntityPanel.js │ │ │ ├── FileButtonField.js │ │ │ ├── FileField.js │ │ │ ├── FormContainer.js │ │ │ ├── FormGroup.js │ │ │ ├── GridField.js │ │ │ ├── HtmlEditor.js │ │ │ ├── HtmlEditorPlugins.js │ │ │ ├── ImageField.js │ │ │ ├── IntervalField.js │ │ │ ├── KeyValueEditorGrid.js │ │ │ ├── LanguageCombo.js │ │ │ ├── MultiEntityDialog.js │ │ │ ├── NumberField.js │ │ │ ├── PasswordGeneratorField.js │ │ │ ├── PasteButtonField.js │ │ │ ├── README.md │ │ │ ├── RadioGroup.js │ │ │ ├── RecipientCombo.js │ │ │ ├── RecurrenceField.js │ │ │ ├── RecurrenceFieldset.js │ │ │ ├── SelectField.js │ │ │ ├── StoreField.js │ │ │ ├── Switch.js │ │ │ ├── TimeField.js │ │ │ └── multiselect │ │ │ │ ├── Field.js │ │ │ │ └── Window.js │ │ │ ├── grid │ │ │ ├── ColumnRenderers.js │ │ │ ├── DateColumn.js │ │ │ ├── EditorGridPanel.js │ │ │ ├── GridPanel.js │ │ │ ├── GridTrait.js │ │ │ ├── GridView.js │ │ │ ├── GroupingView.js │ │ │ ├── SelectAllCheckBox.js │ │ │ ├── editor │ │ │ │ └── ComboColumn.js │ │ │ └── plugin │ │ │ │ └── Sortable.js │ │ │ ├── groups │ │ │ ├── GroupCombo.js │ │ │ ├── GroupDialog.js │ │ │ ├── GroupMemberWindow.js │ │ │ ├── GroupModuleGrid.js │ │ │ ├── GroupUserGrid.js │ │ │ ├── ModulePermissionCombo.js │ │ │ └── SystemSettingsGroupGrid.js │ │ │ ├── import │ │ │ ├── ColumnSelectDialog.js │ │ │ ├── CsvMappingDialog.js │ │ │ └── SpreadSheetExportGrid.js │ │ │ ├── layout │ │ │ └── ResponsiveLayout.js │ │ │ ├── license │ │ │ └── LicenseDialog.js │ │ │ ├── links │ │ │ ├── CreateLinkButton.js │ │ │ ├── CreateLinkWindow.js │ │ │ ├── EditLinkDialog.js │ │ │ ├── EntityCombo.js │ │ │ ├── EntityGrid.js │ │ │ ├── FilterLinkEntityCombo.js │ │ │ ├── LinkBrowser.js │ │ │ ├── LinkBrowserMenuItem.js │ │ │ ├── LinkDetailWindow.js │ │ │ ├── LinkGrid.js │ │ │ └── LinksDetailPanel.js │ │ │ ├── login │ │ │ ├── BaseLoginPanel.js │ │ │ ├── DomainCombo.js │ │ │ ├── ForcePasswordChangePanel.js │ │ │ ├── ForgotDialog.js │ │ │ ├── LanguageCombobox.js │ │ │ ├── LoginDialog.js │ │ │ ├── LoginPanel.js │ │ │ ├── RecoveryDialog.js │ │ │ └── UsernamePanel.js │ │ │ ├── menu │ │ │ ├── EmojiMenu.js │ │ │ └── StoreMenu.js │ │ │ ├── modules │ │ │ ├── GroupRights.js │ │ │ ├── ModulePanel.js │ │ │ ├── ModuleSortWindow.js │ │ │ └── SystemSettingsModuleGrid.js │ │ │ ├── namespaces.js │ │ │ ├── oauth │ │ │ ├── ClientDialog.js │ │ │ ├── ClientGrid.js │ │ │ └── SystemSettingsPanel.js │ │ │ ├── panels │ │ │ └── ScrollLoader.js │ │ │ ├── pdftemplate │ │ │ ├── BlocksField.js │ │ │ ├── GridPanel.js │ │ │ └── TemplateDialog.js │ │ │ ├── permissions │ │ │ ├── AclOverviewGrid.js │ │ │ ├── SharePanel.js │ │ │ └── ShareWindow.js │ │ │ ├── polyfills.js │ │ │ ├── scripts.txt │ │ │ ├── search │ │ │ ├── Panel.js │ │ │ ├── SearchCombo.js │ │ │ ├── SearchEmailCombo.js │ │ │ └── SearchField.js │ │ │ ├── smtp │ │ │ ├── AccountCombo.js │ │ │ ├── AccountDialog.js │ │ │ └── GridPanel.js │ │ │ ├── systemsettings │ │ │ ├── AppearancePanel.js │ │ │ ├── AuthAllowGroupGrid.js │ │ │ ├── AuthenticationPanel.js │ │ │ ├── Dialog.js │ │ │ ├── GeneralPanel.js │ │ │ ├── NotificationsPanel.js │ │ │ └── Panel.js │ │ │ ├── toolbar │ │ │ ├── SearchButton.js │ │ │ └── TitleItem.js │ │ │ ├── tools │ │ │ └── SystemSettingsTools.js │ │ │ ├── tree │ │ │ ├── EntityLoader.js │ │ │ ├── Node.js │ │ │ └── TreeNodeUI.js │ │ │ ├── users │ │ │ ├── CreateUserAccountPanel.js │ │ │ ├── CreateUserPasswordPanel.js │ │ │ ├── CreateUserWizard.js │ │ │ ├── SelectDialogPanel.js │ │ │ ├── SystemSettingsUserGrid.js │ │ │ ├── UserCombo.js │ │ │ ├── UserDefaultsWindow.js │ │ │ ├── UserGrid.js │ │ │ └── UserGroupGrid.js │ │ │ ├── usersettings │ │ │ ├── AccountSettingsPanel.js │ │ │ ├── LookAndFeelPanel.js │ │ │ ├── NotificationPanel.js │ │ │ ├── UserSettingsDialog.js │ │ │ └── VisibleToPanel.js │ │ │ ├── util.js │ │ │ └── util │ │ │ ├── Autolinker.js │ │ │ ├── Cookies.js │ │ │ ├── Filters.js │ │ │ ├── Format.js │ │ │ ├── Object.js │ │ │ ├── QuoteStripper.js │ │ │ └── SelectDialog.js │ └── webclient │ │ ├── CSP.php │ │ └── Extjs3.php ├── modules │ └── community │ │ ├── addressbook │ │ ├── Module.php │ │ ├── cli │ │ │ └── controller │ │ │ │ ├── AddressBook.php │ │ │ │ └── Script.php │ │ ├── controller │ │ │ ├── AddressBook.php │ │ │ ├── Contact.php │ │ │ ├── ContactStar.php │ │ │ ├── Group.php │ │ │ └── Migrate.php │ │ ├── convert │ │ │ ├── Spreadsheet.php │ │ │ └── VCard.php │ │ ├── customfield │ │ │ ├── Contact.php │ │ │ └── MultiContact.php │ │ ├── deduplicate-props.sql │ │ ├── filehandler │ │ │ └── VCard.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ ├── updates.php │ │ │ └── upgrade.sql │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cn.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── he.php │ │ │ ├── hr.php │ │ │ ├── hu.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ro.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ ├── model │ │ │ ├── Address.php │ │ │ ├── AddressBook.php │ │ │ ├── AddressBookPortletBirthday.php │ │ │ ├── Contact.php │ │ │ ├── ContactCustomFields.php │ │ │ ├── ContactGroup.php │ │ │ ├── Date.php │ │ │ ├── EmailAddress.php │ │ │ ├── Group.php │ │ │ ├── Labels.php │ │ │ ├── PhoneNumber.php │ │ │ ├── Settings.php │ │ │ ├── Url.php │ │ │ └── UserSettings.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── AddressBookCombo.js │ │ │ ├── AddressBookDialog.js │ │ │ ├── AddressBookTree.js │ │ │ ├── AddressesField.js │ │ │ ├── BirthdaysPortlet.js │ │ │ ├── BirthdaysPortletSettingsDialog.js │ │ │ ├── ContactCombo.js │ │ │ ├── ContactContextMenu.js │ │ │ ├── ContactDetail.js │ │ │ ├── ContactDialog.js │ │ │ ├── ContactGrid.js │ │ │ ├── CustomFieldSetDialog.js │ │ │ ├── DatesField.js │ │ │ ├── DuplicateDialog.js │ │ │ ├── EmailAddressesField.js │ │ │ ├── GroupDialog.js │ │ │ ├── ICDCombo.js │ │ │ ├── LabelsDialog.js │ │ │ ├── MainPanel.js │ │ │ ├── Module.js │ │ │ ├── NameField.js │ │ │ ├── PhoneNumbersField.js │ │ │ ├── SelectDialogPanel.js │ │ │ ├── SettingsPanel.js │ │ │ ├── SettingsProfilePanel.js │ │ │ ├── SystemSettingsPanel.js │ │ │ ├── TreeLoader.js │ │ │ ├── UrlsField.js │ │ │ ├── Utils.js │ │ │ ├── customfield │ │ │ ├── Contact.js │ │ │ ├── ContactDialog.js │ │ │ ├── ContactRelationGrid.js │ │ │ ├── MultiContact.js │ │ │ └── MultiContactDialog.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── resources │ │ │ ├── addressbook.png │ │ │ ├── facebook.png │ │ │ ├── instagram.png │ │ │ ├── linkedin.png │ │ │ ├── tiktok.png │ │ │ └── twitter.png │ │ │ └── src │ │ │ └── style.scss │ │ ├── apikeys │ │ ├── Module.php │ │ ├── controller │ │ │ └── Key.php │ │ ├── examples │ │ │ ├── contact.php │ │ │ ├── instance.php │ │ │ ├── maintenance-mode.php │ │ │ ├── send-newsletter.php │ │ │ ├── sendmail.php │ │ │ ├── subscribe.php │ │ │ ├── unsubscribe.php │ │ │ ├── update-contact.php │ │ │ ├── upload-newsletter-message.php │ │ │ ├── upload.php │ │ │ └── viewmail.php │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ └── sl.php │ │ ├── model │ │ │ └── Key.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── KeyDialog.js │ │ │ ├── KeyGrid.js │ │ │ ├── Module.js │ │ │ ├── SystemSettingsPanel.js │ │ │ └── scripts.txt │ │ ├── autoconfig │ │ ├── autoconfig.php │ │ ├── autodiscover-json.php │ │ └── autodiscover.php │ │ ├── bookmarks │ │ ├── Module.php │ │ ├── controller │ │ │ ├── Bookmark.php │ │ │ └── Category.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── bn_bd.php │ │ │ ├── ca.php │ │ │ ├── cn.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── hr.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── ko.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ru.php │ │ │ ├── sl.php │ │ │ ├── sv.php │ │ │ └── th.php │ │ ├── model │ │ │ ├── Bookmark.php │ │ │ └── Category.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── BookmarkColumnView.js │ │ │ ├── BookmarkCombo.js │ │ │ ├── BookmarkContextMenu.js │ │ │ ├── BookmarksDialog.js │ │ │ ├── BookmarksView.js │ │ │ ├── CategoryDialog.js │ │ │ ├── MainPanel.js │ │ │ ├── ManageCategoriesGrid.js │ │ │ ├── ManageCategoryDialog.js │ │ │ ├── Module.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── images │ │ │ └── bookmark.png │ │ │ └── style.css │ │ ├── calendar │ │ ├── Module.php │ │ ├── controller │ │ │ ├── Calendar.php │ │ │ ├── CalendarEvent.php │ │ │ ├── CalendarView.php │ │ │ ├── Category.php │ │ │ ├── Holiday.php │ │ │ ├── ParticipantIdentity.php │ │ │ └── ResourceGroup.php │ │ ├── cron │ │ │ ├── ImportWebcalIcs.php │ │ │ └── ScanEmailForInvites.php │ │ ├── filehandlers │ │ │ └── Ics.php │ │ ├── holidays │ │ │ ├── LICENSE │ │ │ ├── countries │ │ │ │ ├── ad.json │ │ │ │ ├── ae.json │ │ │ │ ├── ag.json │ │ │ │ ├── ai.json │ │ │ │ ├── al.json │ │ │ │ ├── am.json │ │ │ │ ├── ao.json │ │ │ │ ├── ar.json │ │ │ │ ├── as.json │ │ │ │ ├── at.json │ │ │ │ ├── au.json │ │ │ │ ├── aw.json │ │ │ │ ├── ax.json │ │ │ │ ├── az.json │ │ │ │ ├── ba.json │ │ │ │ ├── bb.json │ │ │ │ ├── bd.json │ │ │ │ ├── be.json │ │ │ │ ├── bf.json │ │ │ │ ├── bg.json │ │ │ │ ├── bh.json │ │ │ │ ├── bi.json │ │ │ │ ├── bj.json │ │ │ │ ├── bl.json │ │ │ │ ├── bm.json │ │ │ │ ├── bn.json │ │ │ │ ├── bo.json │ │ │ │ ├── bq.json │ │ │ │ ├── br.json │ │ │ │ ├── bs.json │ │ │ │ ├── bw.json │ │ │ │ ├── by.json │ │ │ │ ├── bz.json │ │ │ │ ├── ca.json │ │ │ │ ├── cc.json │ │ │ │ ├── cd.json │ │ │ │ ├── cf.json │ │ │ │ ├── cg.json │ │ │ │ ├── ch.json │ │ │ │ ├── ci.json │ │ │ │ ├── ck.json │ │ │ │ ├── cl.json │ │ │ │ ├── cm.json │ │ │ │ ├── cn.json │ │ │ │ ├── co.json │ │ │ │ ├── cr.json │ │ │ │ ├── cu.json │ │ │ │ ├── cv.json │ │ │ │ ├── cw.json │ │ │ │ ├── cx.json │ │ │ │ ├── cy.json │ │ │ │ ├── cz.json │ │ │ │ ├── de.json │ │ │ │ ├── dj.json │ │ │ │ ├── dk.json │ │ │ │ ├── dm.json │ │ │ │ ├── do.json │ │ │ │ ├── dz.json │ │ │ │ ├── ec.json │ │ │ │ ├── ee.json │ │ │ │ ├── eg.json │ │ │ │ ├── eh.json │ │ │ │ ├── er.json │ │ │ │ ├── es.json │ │ │ │ ├── et.json │ │ │ │ ├── fi.json │ │ │ │ ├── fj.json │ │ │ │ ├── fo.json │ │ │ │ ├── fr.json │ │ │ │ ├── ga.json │ │ │ │ ├── gb.json │ │ │ │ ├── gd.json │ │ │ │ ├── ge.json │ │ │ │ ├── gf.json │ │ │ │ ├── gg.json │ │ │ │ ├── gh.json │ │ │ │ ├── gi.json │ │ │ │ ├── gl.json │ │ │ │ ├── gm.json │ │ │ │ ├── gn.json │ │ │ │ ├── gp.json │ │ │ │ ├── gq.json │ │ │ │ ├── gr.json │ │ │ │ ├── gt.json │ │ │ │ ├── gu.json │ │ │ │ ├── gw.json │ │ │ │ ├── gy.json │ │ │ │ ├── hk.json │ │ │ │ ├── hn.json │ │ │ │ ├── hr.json │ │ │ │ ├── ht.json │ │ │ │ ├── hu.json │ │ │ │ ├── ic.json │ │ │ │ ├── id.json │ │ │ │ ├── ie.json │ │ │ │ ├── il.json │ │ │ │ ├── im.json │ │ │ │ ├── ir.json │ │ │ │ ├── is.json │ │ │ │ ├── it.json │ │ │ │ ├── je.json │ │ │ │ ├── jm.json │ │ │ │ ├── jp.json │ │ │ │ ├── ke.json │ │ │ │ ├── km.json │ │ │ │ ├── kn.json │ │ │ │ ├── kr.json │ │ │ │ ├── ky.json │ │ │ │ ├── lc.json │ │ │ │ ├── li.json │ │ │ │ ├── lr.json │ │ │ │ ├── ls.json │ │ │ │ ├── lt.json │ │ │ │ ├── lu.json │ │ │ │ ├── lv.json │ │ │ │ ├── ly.json │ │ │ │ ├── ma.json │ │ │ │ ├── mc.json │ │ │ │ ├── md.json │ │ │ │ ├── me.json │ │ │ │ ├── mf.json │ │ │ │ ├── mg.json │ │ │ │ ├── mk.json │ │ │ │ ├── ml.json │ │ │ │ ├── mq.json │ │ │ │ ├── mr.json │ │ │ │ ├── ms.json │ │ │ │ ├── mt.json │ │ │ │ ├── mw.json │ │ │ │ ├── mx.json │ │ │ │ ├── my.json │ │ │ │ ├── mz.json │ │ │ │ ├── na.json │ │ │ │ ├── nc.json │ │ │ │ ├── ne.json │ │ │ │ ├── ng.json │ │ │ │ ├── ni.json │ │ │ │ ├── nl.json │ │ │ │ ├── no.json │ │ │ │ ├── nz.json │ │ │ │ ├── pa.json │ │ │ │ ├── pe.json │ │ │ │ ├── ph.json │ │ │ │ ├── pl.json │ │ │ │ ├── pm.json │ │ │ │ ├── pr.json │ │ │ │ ├── pt.json │ │ │ │ ├── py.json │ │ │ │ ├── re.json │ │ │ │ ├── ro.json │ │ │ │ ├── rs.json │ │ │ │ ├── ru.json │ │ │ │ ├── rw.json │ │ │ │ ├── sc.json │ │ │ │ ├── sd.json │ │ │ │ ├── se.json │ │ │ │ ├── sg.json │ │ │ │ ├── sh.json │ │ │ │ ├── si.json │ │ │ │ ├── sj.json │ │ │ │ ├── sk.json │ │ │ │ ├── sl.json │ │ │ │ ├── sm.json │ │ │ │ ├── sn.json │ │ │ │ ├── so.json │ │ │ │ ├── sr.json │ │ │ │ ├── ss.json │ │ │ │ ├── st.json │ │ │ │ ├── sv.json │ │ │ │ ├── sx.json │ │ │ │ ├── sz.json │ │ │ │ ├── tc.json │ │ │ │ ├── td.json │ │ │ │ ├── tg.json │ │ │ │ ├── th.json │ │ │ │ ├── tn.json │ │ │ │ ├── to.json │ │ │ │ ├── tr.json │ │ │ │ ├── tt.json │ │ │ │ ├── tw.json │ │ │ │ ├── tz.json │ │ │ │ ├── ua.json │ │ │ │ ├── ug.json │ │ │ │ ├── us.json │ │ │ │ ├── uy.json │ │ │ │ ├── va.json │ │ │ │ ├── vc.json │ │ │ │ ├── ve.json │ │ │ │ ├── vg.json │ │ │ │ ├── vi.json │ │ │ │ ├── vn.json │ │ │ │ ├── vu.json │ │ │ │ ├── xk.json │ │ │ │ ├── yt.json │ │ │ │ ├── za.json │ │ │ │ ├── zm.json │ │ │ │ └── zw.json │ │ │ ├── names.json │ │ │ └── yaml2json.sh │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── migrate.sql │ │ │ ├── resetmigration.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── nl.php │ │ │ └── pl.php │ │ ├── model │ │ │ ├── Alert.php │ │ │ ├── BusyPeriod.php │ │ │ ├── CalDAVBackend.php │ │ │ ├── Calendar.php │ │ │ ├── CalendarEvent.php │ │ │ ├── CalendarView.php │ │ │ ├── Category.php │ │ │ ├── DefaultAlert.php │ │ │ ├── DefaultAlertWT.php │ │ │ ├── Holiday.php │ │ │ ├── ICalendarHelper.php │ │ │ ├── Link.php │ │ │ ├── Participant.php │ │ │ ├── Preferences.php │ │ │ ├── RecurrenceOverride.php │ │ │ ├── RecurrenceRule.php │ │ │ ├── ResourceGroup.php │ │ │ ├── Scheduler.php │ │ │ └── VTimezone.php │ │ ├── reports │ │ │ ├── Calendar.php │ │ │ ├── Day.php │ │ │ ├── ListView.php │ │ │ ├── Month.php │ │ │ ├── Week.php │ │ │ └── assets │ │ │ │ ├── arrow_down.png │ │ │ │ ├── exception.png │ │ │ │ ├── exception2.png │ │ │ │ ├── paperclip.png │ │ │ │ ├── private.png │ │ │ │ ├── recuring.png │ │ │ │ └── reminder.png │ │ ├── tags │ │ │ ├── en.php │ │ │ └── nl.php │ │ ├── tests │ │ │ ├── Calendar.http │ │ │ ├── CalendarTest.php │ │ │ └── Holiday.http │ │ └── views │ │ │ ├── goui │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── script │ │ │ │ ├── AlertField.ts │ │ │ │ ├── AvailabilityWindow.ts │ │ │ │ ├── CalendarAdapter.ts │ │ │ │ ├── CalendarItem.ts │ │ │ │ ├── CalendarList.ts │ │ │ │ ├── CalendarSubscribe.ts │ │ │ │ ├── CalendarView.ts │ │ │ │ ├── CalendarWindow.ts │ │ │ │ ├── CategoryWindow.ts │ │ │ │ ├── EventDetail.ts │ │ │ │ ├── EventWindow.ts │ │ │ │ ├── Index.ts │ │ │ │ ├── ListView.ts │ │ │ │ ├── LocationField.ts │ │ │ │ ├── Main.ts │ │ │ │ ├── MonthView.ts │ │ │ │ ├── OnlineMeetingService.ts │ │ │ │ ├── ParticipantField.ts │ │ │ │ ├── PreferencesPanel.ts │ │ │ │ ├── ResourcesWindow.ts │ │ │ │ ├── SplitView.ts │ │ │ │ ├── SubscribeWebCalWindow.ts │ │ │ │ ├── SubscribeWindow.ts │ │ │ │ ├── ViewWindow.ts │ │ │ │ ├── WeekView.ts │ │ │ │ └── YearView.ts │ │ │ ├── style │ │ │ │ └── style.scss │ │ │ └── tsconfig.json │ │ │ └── imip.php │ │ ├── carddav │ │ ├── Backend.php │ │ ├── Module.php │ │ ├── index.php │ │ └── language │ │ │ └── en.php │ │ ├── comments │ │ ├── Module.php │ │ ├── controller │ │ │ ├── Comment.php │ │ │ └── Label.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cn.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── hr.php │ │ │ ├── hu.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ro.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ ├── model │ │ │ ├── Comment.php │ │ │ ├── CommentAttachment.php │ │ │ └── Label.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── CommentForm.js │ │ │ ├── CommentLinkDetail.js │ │ │ ├── CommentsDetailPanel.js │ │ │ ├── Composer.js │ │ │ ├── ComposerFieldset.js │ │ │ ├── LabelGrid.js │ │ │ ├── Module.js │ │ │ ├── Settings.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── images │ │ │ └── comments.png │ │ │ └── style.css │ │ ├── davclient │ │ ├── Module.php │ │ ├── controller │ │ │ └── DavAccount.php │ │ ├── cron │ │ │ └── RefreshDav.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── nl.php │ │ │ └── pl.php │ │ ├── model │ │ │ ├── Calendar.php │ │ │ ├── DavAccount.php │ │ │ └── HttpClient.php │ │ └── views │ │ │ └── goui │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── script │ │ │ ├── AccountWindow.ts │ │ │ ├── Index.ts │ │ │ └── SystemSettings.ts │ │ │ └── tsconfig.json │ │ ├── dev │ │ ├── Controller.tpl │ │ ├── Module.php │ │ ├── cli │ │ │ └── controller │ │ │ │ └── Language.php │ │ ├── controller │ │ │ ├── Debugger.php │ │ │ └── Language.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_pt.php │ │ │ └── sl.php │ │ ├── model │ │ │ └── DummyAuthenticator.php │ │ ├── resources │ │ │ └── oldcommonlang.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── DummyAuthenticatorPanel.js │ │ │ └── scripts.txt │ │ ├── dokuwiki │ │ ├── INSTALL.TXT │ │ ├── Module.php │ │ ├── icon.png │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cn.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── he.php │ │ │ ├── hr.php │ │ │ ├── hu.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ro.php │ │ │ ├── ru.php │ │ │ ├── sl.php │ │ │ ├── sv.php │ │ │ └── vi.php │ │ ├── lib │ │ │ └── plugins │ │ │ │ └── authgroupoffice │ │ │ │ ├── admin.php │ │ │ │ ├── auth.php │ │ │ │ ├── lang │ │ │ │ ├── af │ │ │ │ │ └── lang.php │ │ │ │ ├── ar │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── bg │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── ca-valencia │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── ca │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── cs │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── da │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── de-informal │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── de │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── el │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── en │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── eo │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── es │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── et │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── eu │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── fa │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── fi │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── fr │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── gl │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── he │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── hr │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── hu │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── ia │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── id │ │ │ │ │ └── lang.php │ │ │ │ ├── is │ │ │ │ │ └── lang.php │ │ │ │ ├── it │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── ja │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── kk │ │ │ │ │ └── lang.php │ │ │ │ ├── ko │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── la │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── lb │ │ │ │ │ └── help.txt │ │ │ │ ├── lt │ │ │ │ │ └── lang.php │ │ │ │ ├── lv │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── mk │ │ │ │ │ └── lang.php │ │ │ │ ├── mr │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── ne │ │ │ │ │ └── lang.php │ │ │ │ ├── nl │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── no │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── pl │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── pt-br │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── pt │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── ro │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── ru │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── sk │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── sl │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── sq │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── sr │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── sv │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── th │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── tr │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── uk │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── vi │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ ├── zh-tw │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ └── zh │ │ │ │ │ ├── help.txt │ │ │ │ │ └── lang.php │ │ │ │ └── plugin.info.txt │ │ ├── model │ │ │ └── Settings.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── MainPanel.js │ │ │ ├── Module.js │ │ │ ├── SystemSettingsPanel.js │ │ │ └── scripts.txt │ │ ├── email │ │ ├── controller │ │ │ └── Account.php │ │ └── model │ │ │ └── Account.php │ │ ├── googleauthenticator │ │ ├── Module.php │ │ ├── install │ │ │ └── updates.php │ │ └── language │ │ │ ├── bg.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── fr.php │ │ │ ├── he.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ └── pt_pt.php │ │ ├── history │ │ ├── Module.php │ │ ├── controller │ │ │ └── LogEntry.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── he.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_pt.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ ├── model │ │ │ ├── LogEntry.php │ │ │ └── Settings.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── HistoryDetailPanel.js │ │ │ ├── LogEntryGrid.js │ │ │ ├── MainPanel.js │ │ │ ├── Module.js │ │ │ ├── SystemSettingsPanel.js │ │ │ ├── TypeGrid.js │ │ │ └── scripts.txt │ │ ├── imapauthenticator │ │ ├── Module.php │ │ ├── controller │ │ │ └── Server.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ ├── model │ │ │ ├── Authenticator.php │ │ │ ├── Domain.php │ │ │ ├── Group.php │ │ │ └── Server.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── Module.js │ │ │ ├── ServerForm.js │ │ │ ├── ServerGrid.js │ │ │ ├── Settings.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── images │ │ │ └── icon.png │ │ │ └── style.css │ │ ├── jitsimeet │ │ ├── Module.php │ │ ├── controller │ │ │ └── Auth.php │ │ ├── icon.png │ │ ├── language │ │ │ └── en.php │ │ ├── model │ │ │ └── Settings.php │ │ └── views │ │ │ └── goui │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── script │ │ │ ├── Index.ts │ │ │ └── Settings.ts │ │ │ └── tsconfig.json │ │ ├── ldapauthenticator │ │ ├── Module.php │ │ ├── README.md │ │ ├── cli │ │ │ └── controller │ │ │ │ └── Sync.php │ │ ├── controller │ │ │ └── Server.php │ │ ├── cron │ │ │ └── Sync.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ └── sl.php │ │ ├── model │ │ │ ├── Authenticator.php │ │ │ ├── Domain.php │ │ │ ├── Group.php │ │ │ └── Server.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── Module.js │ │ │ ├── ServerForm.js │ │ │ ├── ServerGrid.js │ │ │ ├── Settings.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── images │ │ │ └── icon.png │ │ │ └── style.css │ │ ├── maildomains │ │ ├── Module.php │ │ ├── cli │ │ │ └── controller │ │ │ │ └── Script.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── controller │ │ │ ├── Alias.php │ │ │ ├── Domain.php │ │ │ └── Mailbox.php │ │ ├── convert │ │ │ └── Spreadsheet.php │ │ ├── cron │ │ │ └── CheckDns.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── Migrator.php │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── bn_bd.php │ │ │ ├── ca.php │ │ │ ├── cn.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── el.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── he.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── ko.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ru.php │ │ │ ├── sv.php │ │ │ ├── th.php │ │ │ └── tr.php │ │ ├── model │ │ │ ├── Alias.php │ │ │ ├── DkimKey.php │ │ │ ├── Domain.php │ │ │ ├── Mailbox.php │ │ │ └── Settings.php │ │ ├── util │ │ │ ├── DnsCheck.php │ │ │ └── Ptr.php │ │ └── views │ │ │ └── goui │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── script │ │ │ ├── AliasDialog.ts │ │ │ ├── AliasTable.ts │ │ │ ├── DnsSettingsPanel.ts │ │ │ ├── DomainDetail.ts │ │ │ ├── DomainDialog.ts │ │ │ ├── DomainTable.ts │ │ │ ├── ImportDkimKeyDialog.ts │ │ │ ├── Index.ts │ │ │ ├── MailDomain.ts │ │ │ ├── MailboxDialog.ts │ │ │ ├── MailboxExportDialog.ts │ │ │ ├── MailboxTable.ts │ │ │ ├── MainPanel.ts │ │ │ └── SystemSettings.ts │ │ │ ├── style │ │ │ └── style.scss │ │ │ └── tsconfig.json │ │ ├── multi_instance │ │ ├── Module.php │ │ ├── README.md │ │ ├── cli │ │ │ └── controller │ │ │ │ └── Instance.php │ │ ├── config.php.tpl │ │ ├── controller │ │ │ └── Instance.php │ │ ├── cron │ │ │ ├── DeactivateTrials.php │ │ │ └── InstanceCron.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cn.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ ├── model │ │ │ └── Instance.php │ │ ├── oninstall.php │ │ ├── site-conf.tpl │ │ └── views │ │ │ └── extjs3 │ │ │ ├── AllowedModulesPanel.js │ │ │ ├── InstanceDialog.js │ │ │ ├── MainPanel.js │ │ │ ├── Module.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── Paper │ │ │ └── style.css │ │ ├── notes │ │ ├── Module.php │ │ ├── cli │ │ │ └── controller │ │ │ │ └── NoteBook.php │ │ ├── controller │ │ │ ├── Note.php │ │ │ └── NoteBook.php │ │ ├── convert │ │ │ └── Spreadsheet.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── bn_bd.php │ │ │ ├── ca.php │ │ │ ├── cn.php │ │ │ ├── cs.php │ │ │ ├── da.php │ │ │ ├── de.php │ │ │ ├── el.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── et.php │ │ │ ├── fi.php │ │ │ ├── fr.php │ │ │ ├── hr.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── ko.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ro.php │ │ │ ├── ru.php │ │ │ ├── sl.php │ │ │ ├── sv.php │ │ │ ├── th.php │ │ │ ├── tr.php │ │ │ └── zh_tw.php │ │ ├── model │ │ │ ├── Note.php │ │ │ ├── NoteBook.php │ │ │ └── UserSettings.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── Decrypt.js │ │ │ ├── Decrypter.js │ │ │ ├── MainPanel.js │ │ │ ├── Module.js │ │ │ ├── NoteBookCombo.js │ │ │ ├── NoteBookDialog.js │ │ │ ├── NoteBookGrid.js │ │ │ ├── NoteDetail.js │ │ │ ├── NoteDialog.js │ │ │ ├── NoteGrid.js │ │ │ ├── SettingsPanel.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── images │ │ │ └── notes.png │ │ │ └── style.css │ │ ├── notesencrypt │ │ ├── Module.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cn.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── he.php │ │ │ ├── hu.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ro.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── Functions.js │ │ │ ├── Module.js │ │ │ ├── NoteDetailOverride.js │ │ │ ├── NoteDialogOverride.js │ │ │ └── scripts.txt │ │ ├── oauth2client │ │ ├── Module.php │ │ ├── README.md │ │ ├── controller │ │ │ ├── DefaultClient.php │ │ │ └── Oauth2Client.php │ │ ├── gauth.php │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── ja.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_pt.php │ │ │ └── sl.php │ │ ├── model │ │ │ ├── Authenticator.php │ │ │ ├── DefaultClient.php │ │ │ ├── Oauth2Account.php │ │ │ └── Oauth2Client.php │ │ ├── provider │ │ │ └── Azure.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── ClientCombo.js │ │ │ ├── ClientDialog.js │ │ │ ├── ClientGrid.js │ │ │ ├── DefaultClientCombo.js │ │ │ ├── EmailOverrides.js │ │ │ ├── Module.js │ │ │ ├── SystemSettingsPanel.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── images │ │ │ ├── google.png │ │ │ ├── microsoft.png │ │ │ └── openid.png │ │ │ └── src │ │ │ └── style.scss │ │ ├── oidc │ │ ├── Module.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── controller │ │ │ └── Client.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ └── uninstall.sql │ │ ├── model │ │ │ ├── Authenticator.php │ │ │ └── Client.php │ │ └── views │ │ │ └── goui │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── resources │ │ │ └── openid.png │ │ │ ├── script │ │ │ ├── Index.ts │ │ │ ├── OIDConnectClientDialog.ts │ │ │ └── Settings.ts │ │ │ ├── style │ │ │ └── style.scss │ │ │ └── tsconfig.json │ │ ├── otp │ │ ├── Module.php │ │ ├── OtpAuthenticator.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ └── updates.php │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── hu.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ ├── model │ │ │ ├── OtpAuthenticator.php │ │ │ └── Settings.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── EnableAuthenticatorDialog.js │ │ │ ├── Module.js │ │ │ ├── OtpPanel.js │ │ │ ├── Settings.js │ │ │ ├── SystemSettings.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ └── images │ │ │ ├── googleauthenticator.png │ │ │ ├── googleauthenticator_lrg.png │ │ │ └── icon.png │ │ ├── pwned │ │ ├── Module.php │ │ ├── icon.png │ │ ├── language │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── nl.php │ │ │ └── pl.php │ │ ├── model │ │ │ ├── Pwned.php │ │ │ └── Settings.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── SystemSettings.js │ │ │ └── scripts.txt │ │ ├── serverclient │ │ ├── Module.php │ │ ├── controller │ │ │ └── Serverclient.php │ │ ├── install │ │ │ ├── install.txt │ │ │ └── noautoinstall │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── bn_bd.php │ │ │ ├── ca.php │ │ │ ├── cs.php │ │ │ ├── de.php │ │ │ ├── el.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fr.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── ko.php │ │ │ ├── mn.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_br.php │ │ │ ├── pt_pt.php │ │ │ ├── ru.php │ │ │ ├── sl.php │ │ │ ├── sv.php │ │ │ ├── th.php │ │ │ └── tr.php │ │ ├── model │ │ │ ├── HttpClient.php │ │ │ └── MailDomain.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── UserOverride.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ ├── images │ │ │ └── serverclient.png │ │ │ └── style.css │ │ ├── tasks │ │ ├── Module.php │ │ ├── cli │ │ │ └── controller │ │ │ │ └── Tasklist.php │ │ ├── controller │ │ │ ├── Category.php │ │ │ ├── Task.php │ │ │ ├── TaskList.php │ │ │ └── TaskListGrouping.php │ │ ├── convert │ │ │ ├── Spreadsheet.php │ │ │ └── VCalendar.php │ │ ├── icon.png │ │ ├── install │ │ │ ├── Migrator.php │ │ │ ├── install.sql │ │ │ ├── uninstall.sql │ │ │ ├── updates.php │ │ │ └── upgrade.sql │ │ ├── language │ │ │ ├── bg.php │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── he.php │ │ │ ├── hu.php │ │ │ ├── ja.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── pt_pt.php │ │ │ ├── sl.php │ │ │ └── sv.php │ │ ├── model │ │ │ ├── Alert.php │ │ │ ├── Category.php │ │ │ ├── Progress.php │ │ │ ├── Task.php │ │ │ ├── TaskList.php │ │ │ ├── TaskListGroup.php │ │ │ ├── TaskListGrouping.php │ │ │ └── UserSettings.php │ │ └── views │ │ │ └── extjs3 │ │ │ ├── AlertFields.js │ │ │ ├── CategoriesGrid.js │ │ │ ├── CategoryDialog.js │ │ │ ├── ChooseTasklistDialog.js │ │ │ ├── ChooseTasklistGrid.js │ │ │ ├── ContinueTaskDialog.js │ │ │ ├── MainPanel.js │ │ │ ├── Module.js │ │ │ ├── ParticipantField.js │ │ │ ├── Portlet.js │ │ │ ├── ProgressCombo.js │ │ │ ├── ProgressGrid.js │ │ │ ├── ProjectCombo.js │ │ │ ├── SettingsPanel.js │ │ │ ├── SubscribeWindow.js │ │ │ ├── TaskCombo.js │ │ │ ├── TaskDetail.js │ │ │ ├── TaskDialog.js │ │ │ ├── TaskGrid.js │ │ │ ├── TaskLinkDetail.js │ │ │ ├── TaskListGroupingCombo.js │ │ │ ├── TasklistCombo.js │ │ │ ├── TasklistDialog.js │ │ │ ├── TasklistGroupDialog.js │ │ │ ├── TasklistsGrid.js │ │ │ ├── scripts.txt │ │ │ └── themes │ │ │ └── default │ │ │ └── style.css │ │ └── test │ │ ├── Module.php │ │ ├── cli │ │ └── controller │ │ │ └── Profile.php │ │ ├── controller │ │ └── B.php │ │ ├── install │ │ ├── install.sql │ │ └── uninstall.sql │ │ ├── language │ │ └── en.php │ │ └── model │ │ ├── A.php │ │ ├── ADynamic.php │ │ ├── AHasMany.php │ │ ├── AHasOne.php │ │ ├── AMap.php │ │ ├── B.php │ │ └── C.php └── vendor │ ├── odtphp │ └── library │ │ ├── Segment.php │ │ ├── SegmentIterator.php │ │ ├── odf.php │ │ └── zip │ │ ├── PclZipProxy.php │ │ ├── PhpZipProxy.php │ │ ├── ZipInterface.php │ │ └── pclzip │ │ └── pclzip.lib.php │ ├── pear │ ├── Auth │ │ ├── SASL.php │ │ └── SASL │ │ │ ├── Anonymous.php │ │ │ ├── Common.php │ │ │ ├── CramMD5.php │ │ │ ├── DigestMD5.php │ │ │ ├── Exception.php │ │ │ ├── External.php │ │ │ ├── Login.php │ │ │ ├── Plain.php │ │ │ └── SCRAM.php │ ├── Net │ │ ├── Sieve.php │ │ └── Socket.php │ └── PEAR.php │ └── wsdl │ └── checkVatService.wsdl ├── groupoffice ├── groupofficecli.php ├── index.php ├── install ├── clearcache.php ├── configfile.php ├── finished.php ├── footer.php ├── gotest.php ├── header.php ├── index.php ├── install.php ├── license.php ├── test.php └── upgrade.php ├── language ├── addressformats.php ├── holidays │ ├── ar.php │ ├── bn_bd.php │ ├── cs.php │ ├── de.php │ ├── de_at.php │ ├── de_ch.php │ ├── en.php │ ├── en_au.php │ ├── en_gb.php │ ├── en_ph.php │ ├── en_us.php │ ├── es.php │ ├── fr.php │ ├── hr.php │ ├── hu.php │ ├── it.php │ ├── ja.php │ ├── nb.php │ ├── nl.php │ ├── pl.php │ ├── pt_br.php │ ├── pt_pt.php │ ├── ro.php │ ├── sv.php │ └── th.php └── languages.php ├── modules ├── bookmarks │ ├── BookmarksModule.php │ ├── icons │ │ ├── 3d.png │ │ ├── agt_announcements.png │ │ ├── agt_business.png │ │ ├── agt_desktop_enhancements.png │ │ ├── agt_family.png │ │ ├── agt_forum.png │ │ ├── agt_internet.png │ │ ├── agt_mp3.png │ │ ├── agt_multimedia.png │ │ ├── agt_reload.png │ │ ├── agt_softwareD.png │ │ ├── agt_support.png │ │ ├── agt_utilities copy.png │ │ ├── agt_virus.png │ │ ├── agt_web.png │ │ ├── application-pdf.png │ │ ├── applications-development-2.png │ │ ├── applications-development-3.png │ │ ├── applications-development.png │ │ ├── applications-office.png │ │ ├── appointment-new.png │ │ ├── audio-headset.png │ │ ├── bell.png │ │ ├── bookmark.png │ │ ├── buisness.png │ │ ├── camera.png │ │ ├── clicknrun.png │ │ ├── clock.png │ │ ├── code-class.png │ │ ├── colorize.png │ │ ├── configure.png │ │ ├── connect_creating.png │ │ ├── date.png │ │ ├── document-page-setup.png │ │ ├── documentation.png │ │ ├── edit_group.png │ │ ├── education.png │ │ ├── emblem-documents.png │ │ ├── emblem-package.png │ │ ├── encrypted.png │ │ ├── fileprint.png │ │ ├── filesave.png │ │ ├── games.png │ │ ├── go-home-6.png │ │ ├── graphic-design.png │ │ ├── groupoffice.png │ │ ├── help-contents-5.png │ │ ├── hibernate.png │ │ ├── home&food.png │ │ ├── identity.png │ │ ├── intermesh.png │ │ ├── katuberling.png │ │ ├── kchart.png │ │ ├── logout.png │ │ ├── mail-queue-2.png │ │ ├── meeting-attending-tentative.png │ │ ├── memory.png │ │ ├── office-chart-area-stacked.png │ │ ├── office-chart-bar-percentage.png │ │ ├── phone-2.png │ │ ├── player_volume.png │ │ ├── playsound.png │ │ ├── printer-5.png │ │ ├── scanner-3.png │ │ ├── system-run.png │ │ ├── terminal.png │ │ ├── thumbnail.png │ │ ├── utilities.png │ │ ├── view-pim-contacts.png │ │ ├── view-pim-news.png │ │ ├── viewmag.png │ │ └── wizard.png │ ├── install │ │ └── updates.php │ └── language │ │ └── cs.php ├── caldav │ └── calendar.php ├── calendar │ ├── CalendarModule.php │ └── install │ │ ├── uninstall.sql │ │ ├── updates.php │ │ └── updatescripts │ │ ├── 1_convert_categories.php │ │ ├── 2_fix_project_calendars.php │ │ ├── 3_install_cron.php │ │ ├── 3_preset_category_acls.php │ │ ├── 4_nl_koningsdag.php │ │ └── 5_revert_rrule_shifting.php ├── carddav │ ├── CarddavModule.php │ ├── addressbook.php │ └── install │ │ └── updates.inc.php ├── customcss │ ├── CustomcssModule.php │ ├── MainPanel.js │ ├── controller │ │ └── CustomcssController.php │ ├── install │ │ └── noautoinstall │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ru.php │ │ ├── sl.php │ │ └── sv.php │ ├── scripts.inc.php │ ├── scripts.txt │ └── themes │ │ └── Default │ │ ├── images │ │ └── customcss.png │ │ └── style.css ├── dav │ ├── DavModule.php │ ├── ObjectTree.php │ ├── files.php │ ├── fs │ │ ├── Directory.php │ │ ├── File.php │ │ ├── RootDirectory.php │ │ └── SharedDirectory.php │ ├── install │ │ ├── install.sql │ │ ├── uninstall.sql │ │ └── updates.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── it.php │ │ ├── ko.php │ │ ├── nb.php │ │ ├── pt_br.php │ │ ├── ru.php │ │ └── sv.php │ ├── locks │ │ └── LocksBackend.php │ └── themes │ │ └── Default │ │ └── images │ │ └── dav.png ├── defaultsite │ ├── DefaultsiteModule.php │ ├── controller │ │ └── InstallationController.php │ ├── language │ │ ├── bn_bd.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── nb.php │ │ ├── nl.php │ │ └── sv.php │ ├── siteconfig.php │ └── views │ │ └── site │ │ ├── addressbook │ │ ├── contactform.php │ │ └── contactform_done.php │ │ ├── assets │ │ └── css │ │ │ ├── site.css │ │ │ └── ticket.css │ │ ├── layouts │ │ └── main.php │ │ ├── servermanager │ │ ├── createtrial.php │ │ ├── emails │ │ │ └── trial.txt │ │ ├── emailsent.php │ │ ├── newtrial.php │ │ └── trialcreated.php │ │ ├── site │ │ ├── 404.php │ │ ├── content.php │ │ ├── error.php │ │ ├── login.php │ │ ├── recoverPassword.php │ │ ├── register.php │ │ ├── resetExpiredPassword.php │ │ └── resetPassword.php │ │ └── tickets │ │ ├── newticket.php │ │ ├── ticket.php │ │ ├── ticketcreated.php │ │ └── ticketlist.php ├── email │ ├── AccountContextMenu.js │ ├── AccountDialog.js │ ├── AccountsDialog.js │ ├── AccountsGrid.js │ ├── AccountsTree.js │ ├── AddressContextMenu.js │ ├── AddressListDialog.js │ ├── AddressListGrid.js │ ├── AddressbookDialog.js │ ├── AliasDialog.js │ ├── AliasesDialog.js │ ├── AliasesGrid.js │ ├── AllAttachmentContextMenu.js │ ├── AttachmentContextMenu.js │ ├── ContactsGrid.js │ ├── CopyMailToDialog.js │ ├── EmailClient.js │ ├── EmailComposer.js │ ├── EmailModule.php │ ├── EmailTemplateDialog.js │ ├── FilterDialog.js │ ├── FilterGrid.js │ ├── FindContactDialog.js │ ├── FolderDialog.js │ ├── FoldersDialog.js │ ├── ImapAclDialog.js │ ├── ImapAclUserDialog.js │ ├── LabelsGrid.js │ ├── LinkAttachmentDialog.js │ ├── LinkedMessagePanel.js │ ├── MailboxContextMenu.js │ ├── MessageContextMenu.js │ ├── MessageDialog.js │ ├── MessagePanel.js │ ├── MessagesGrid.js │ ├── MoveOldMailDialog.js │ ├── Portlet.js │ ├── PortletPanel.js │ ├── PortletSettingsDialog.js │ ├── RecipientCombo.js │ ├── SearchDialog.js │ ├── SelectAccount.js │ ├── Settings.js │ ├── SystemSettingsPanel.js │ ├── TemplateCombo.js │ ├── TemplateGroupDialog.js │ ├── TemplateGroupGrid.js │ ├── TemplatesGrid.js │ ├── UnknownRecipientsDialog.js │ ├── controller │ │ ├── AccountController.php │ │ ├── AliasController.php │ │ ├── EmailTemplate.php │ │ ├── FilterController.php │ │ ├── FolderController.php │ │ ├── LabelController.php │ │ ├── MessageController.php │ │ ├── PortletController.php │ │ ├── RegisterController.php │ │ ├── ResponsiveController.php │ │ ├── TemplateController.php │ │ └── TemplateGroupController.php │ ├── install │ │ ├── install.sql │ │ ├── uninstall.sql │ │ ├── updates.inc.php │ │ └── updatescripts │ │ │ ├── 2_imap_encryption.php │ │ │ ├── 3_re_encrypt.php │ │ │ └── encrypt.inc.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fi.php │ │ ├── fr.php │ │ ├── he.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sl.php │ │ ├── sv.php │ │ ├── th.php │ │ ├── tr.php │ │ └── zh_tw.php │ ├── model │ │ ├── Account.php │ │ ├── AccountSort.php │ │ ├── Alias.php │ │ ├── ComposerMessage.php │ │ ├── DefaultTemplate.php │ │ ├── DefaultTemplateForAccount.php │ │ ├── Filter.php │ │ ├── ImapMailbox.php │ │ ├── ImapMessage.php │ │ ├── ImapMessageAttachment.php │ │ ├── ImapSearchQuery.php │ │ ├── Label.php │ │ ├── Message.php │ │ ├── MessageAttachment.php │ │ ├── PortletFolder.php │ │ ├── SavedMessage.php │ │ └── UserSettings.php │ ├── scripts.inc.php │ ├── scripts.txt │ ├── themes │ │ └── Default │ │ │ ├── images │ │ │ ├── 16x16 │ │ │ │ ├── addressbook.png │ │ │ │ ├── btn-attach.png │ │ │ │ ├── high_priority.png │ │ │ │ ├── low_priority.png │ │ │ │ ├── message.png │ │ │ │ ├── message_answered.png │ │ │ │ ├── message_answered_and_forwarded.png │ │ │ │ ├── message_forwarded.png │ │ │ │ └── share_mailbox.png │ │ │ └── email.png │ │ │ └── style.css │ └── views │ │ └── Extjs3 │ │ ├── LabelDialog.js │ │ ├── TemplateGridPanel.js │ │ └── TemplateSelectionDialog.js ├── files │ ├── BookmarksGrid.js │ ├── CompressDialog.js │ ├── ContextMenu.js │ ├── CustomField.js │ ├── DnDFileUpload.js │ ├── ExpireDateDialog.js │ ├── FileBrowser.js │ ├── FileBrowserButton.js │ ├── FileBrowserMenuItem.js │ ├── FilePanel.js │ ├── FilePropertiesDialog.js │ ├── FilesDetailPanel.js │ ├── FilesGrid.js │ ├── FilesModule.php │ ├── FolderPanel.js │ ├── FolderPropertiesDialog.js │ ├── FolderbrowserTabPanel.js │ ├── ImageViewer.js │ ├── NewFolderDialog.js │ ├── OpenFileWindow.js │ ├── Portlet.js │ ├── PortletExpiredFiles.js │ ├── PortletExpiredFilesGrid.js │ ├── PortletFolderBrowser.js │ ├── PortletFolderBrowserGrid.js │ ├── RecentFilesGrid.js │ ├── SaveAsDialog.js │ ├── SelectFile.js │ ├── SelectFolder.js │ ├── SelectFolderDialog.js │ ├── TemplatesWindow.js │ ├── ThumbsPanel.js │ ├── TreeFilePanel.js │ ├── TreePanel.js │ ├── VersionsGrid.js │ ├── controller │ │ ├── BookmarkController.php │ │ ├── EmailController.php │ │ ├── FileController.php │ │ ├── FolderController.php │ │ ├── FolderPreferenceController.php │ │ ├── NotificationController.php │ │ ├── TemplateController.php │ │ └── VersionController.php │ ├── cron │ │ ├── CorrectQuotaUser.php │ │ ├── DeleteExpiredLinks.php │ │ ├── NotifyFolderChanges.php │ │ └── RecalculateDiskUsage.php │ ├── customfield │ │ └── File.php │ ├── demo │ │ ├── Demo letter.docx │ │ ├── elmer.jpg │ │ ├── female.png │ │ ├── letter_template.docx │ │ ├── male.png │ │ ├── noperson.jpg │ │ └── wecoyote.png │ ├── exception │ │ └── FileLocked.php │ ├── filehandler │ │ ├── Download.php │ │ ├── FilehandlerInterface.php │ │ ├── ImageViewer.php │ │ └── Inline.php │ ├── fs │ │ └── UserLogFile.php │ ├── install │ │ ├── install.sql │ │ ├── templates │ │ │ ├── empty.doc │ │ │ ├── empty.docx │ │ │ └── empty.odt │ │ ├── uninstall.sql │ │ ├── updates.inc.php │ │ └── updatescripts │ │ │ ├── 1_set_log_dir.php │ │ │ ├── 2_calculate_user_quota.php │ │ │ ├── 3_install_cron.php │ │ │ └── 4_install_quota_cron.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fi.php │ │ ├── fr.php │ │ ├── he.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sl.php │ │ ├── sv.php │ │ ├── th.php │ │ ├── tr.php │ │ └── zh_tw.php │ ├── model │ │ ├── Bookmark.php │ │ ├── File.php │ │ ├── FileHandler.php │ │ ├── Folder.php │ │ ├── FolderNotification.php │ │ ├── FolderNotificationMessage.php │ │ ├── FolderPreference.php │ │ ├── SharedRootFolder.php │ │ ├── Template.php │ │ ├── TrashedItem.php │ │ └── Version.php │ ├── scripts.txt │ ├── themes │ │ └── Default │ │ │ ├── images │ │ │ ├── add.png │ │ │ ├── browser.png │ │ │ ├── compress.png │ │ │ ├── decompress.png │ │ │ ├── download.png │ │ │ ├── filenew.png │ │ │ ├── files.png │ │ │ ├── folder.png │ │ │ ├── folder_documents.png │ │ │ ├── folder_favorites.png │ │ │ ├── folder_green.png │ │ │ ├── folder_home.png │ │ │ ├── folder_images.png │ │ │ ├── folder_new.png │ │ │ ├── folder_public.png │ │ │ ├── gota.gif │ │ │ ├── imageviewer.png │ │ │ ├── network.png │ │ │ ├── properties.png │ │ │ ├── selected.gif │ │ │ └── templates.png │ │ │ └── style.css │ └── views │ │ └── Extjs3 │ │ └── TrashGrid.js ├── manualsite │ ├── ManualsiteModule.php │ ├── language │ │ ├── en.php │ │ └── fr.php │ ├── siteconfig.php │ └── views │ │ └── site │ │ ├── assets │ │ ├── css │ │ │ └── site.css │ │ ├── favicon.ico │ │ ├── images │ │ │ └── groupoffice.gif │ │ └── lightbox │ │ │ ├── README.markdown │ │ │ ├── css │ │ │ ├── lightbox.css │ │ │ └── screen.css │ │ │ ├── img │ │ │ ├── close.png │ │ │ ├── demopage │ │ │ │ ├── donate.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── image-1.jpg │ │ │ │ ├── image-2.jpg │ │ │ │ ├── image-3.jpg │ │ │ │ ├── image-4.jpg │ │ │ │ ├── image-5.jpg │ │ │ │ ├── image-6.jpg │ │ │ │ ├── thumb-1.jpg │ │ │ │ ├── thumb-2.jpg │ │ │ │ ├── thumb-3.jpg │ │ │ │ ├── thumb-4.jpg │ │ │ │ ├── thumb-5.jpg │ │ │ │ └── thumb-6.jpg │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── lightbox-2.6.min.js │ │ │ └── modernizr.custom.js │ │ ├── layouts │ │ └── main.php │ │ ├── manualsite │ │ ├── content.php │ │ └── home.php │ │ └── site │ │ ├── 404.php │ │ ├── content.php │ │ ├── error.php │ │ ├── login.php │ │ ├── recoverPassword.php │ │ ├── register.php │ │ └── resetPassword.php ├── modules │ ├── controller │ │ └── ModuleController.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fi.php │ │ ├── fr.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ko.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sv.php │ │ ├── th.php │ │ ├── tr.php │ │ └── zh_tw.php │ └── themes │ │ └── Default │ │ ├── images │ │ ├── delete.png │ │ └── modules.png │ │ └── style.css ├── postfixadmin │ ├── PostfixadminModule.php │ ├── controller │ │ ├── AliasController.php │ │ ├── DomainController.php │ │ ├── MailboxController.php │ │ └── MaildirController.php │ ├── install │ │ ├── install.sql │ │ ├── uninstall.sql │ │ ├── updates.inc.php │ │ └── updatescripts │ │ │ └── 1_disable_vacation.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── he.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ru.php │ │ ├── sl.php │ │ ├── sv.php │ │ ├── th.php │ │ └── tr.php │ ├── model │ │ ├── Alias.php │ │ ├── Domain.php │ │ ├── DomainExport.php │ │ └── Mailbox.php │ ├── scripts.txt │ └── themes │ │ ├── Default │ │ ├── images │ │ │ └── postfixadmin.png │ │ └── style.css │ │ └── ExtJS │ │ ├── images │ │ └── postfixadmin.png │ │ └── style.css ├── reminders │ ├── MainPanel.js │ ├── ReminderDialog.js │ ├── RemindersGrid.js │ ├── RemindersModule.php │ ├── controller │ │ └── ReminderController.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fr.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ru.php │ │ ├── sl.php │ │ ├── th.php │ │ └── vi.php │ ├── scripts.txt │ └── themes │ │ └── Default │ │ ├── images │ │ └── reminders.png │ │ └── style.css ├── sieve │ ├── ActionCreatorDialog.js │ ├── ActionGrid.js │ ├── ConditionPanel.js │ ├── CriteriumCreatorDialog.js │ ├── CriteriumGrid.js │ ├── INSTALL.TXT │ ├── OutOfOfficePanel.js │ ├── Overrides.js │ ├── SieveDialog.js │ ├── SieveGrid.js │ ├── SieveModule.php │ ├── Stores.js │ ├── VacationDialog.js │ ├── controller │ │ └── SieveController.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── he.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── sl.php │ │ └── sv.php │ ├── scripts.inc.php │ ├── scripts.txt │ ├── themes │ │ └── Default │ │ │ ├── images │ │ │ └── sieve.png │ │ │ └── style.css │ └── util │ │ └── Sieve.php ├── site │ ├── SiteModule.php │ ├── components │ │ ├── AssetManager.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Notifier.php │ │ ├── Request.php │ │ ├── Router.php │ │ ├── Scripts.php │ │ ├── Site.php │ │ ├── Template.php │ │ ├── UrlManager.php │ │ ├── UrlRule.php │ │ └── Widget.php │ ├── controller │ │ ├── AccountController.php │ │ ├── ContentController.php │ │ ├── FrontController.php │ │ ├── MenuController.php │ │ ├── MenuItemController.php │ │ ├── MultifileController.php │ │ └── SiteController.php │ ├── index.php │ ├── install │ │ ├── install.sql │ │ ├── uninstall.sql │ │ └── updates.inc.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── he.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ro.php │ │ ├── sl.php │ │ └── sv.php │ ├── model │ │ ├── Content.php │ │ ├── FormModel.php │ │ ├── Menu.php │ │ ├── MenuItem.php │ │ ├── MultifileFile.php │ │ └── Site.php │ ├── tag │ │ ├── Link.php │ │ ├── TagInterface.php │ │ └── Thumb.php │ ├── themes │ │ └── Default │ │ │ ├── images │ │ │ ├── content.png │ │ │ ├── layout.png │ │ │ ├── menu.png │ │ │ ├── menu_blue.png │ │ │ ├── menuitem.png │ │ │ └── site.png │ │ │ └── style.css │ ├── views │ │ └── Extjs3 │ │ │ ├── ContentDialog.js │ │ │ ├── ContentPanel.js │ │ │ ├── ContextMenu.js │ │ │ ├── Customfield.js │ │ │ ├── HtmlEditorContentTreePanel.js │ │ │ ├── HtmlEditorImageDialog.js │ │ │ ├── HtmlEditorImageInsert.js │ │ │ ├── HtmlEditorLinkDialog.js │ │ │ ├── HtmlEditorLinkInsert.js │ │ │ ├── MainPanel.js │ │ │ ├── MenuDialog.js │ │ │ ├── MenuitemDialog.js │ │ │ ├── ModuleSettingsDialog.js │ │ │ ├── MultifileDialog.js │ │ │ ├── MultifileView.js │ │ │ ├── SelectFile.js │ │ │ ├── SelectMultiFile.js │ │ │ ├── SiteDialog.js │ │ │ ├── SiteTreePanel.js │ │ │ ├── Stores.js │ │ │ ├── scripts.txt │ │ │ └── treenodes │ │ │ ├── AbstractNode.js │ │ │ ├── ContentNode.js │ │ │ ├── MenuItemNode.js │ │ │ ├── MenuNode.js │ │ │ └── SiteNode.js │ └── widget │ │ ├── Form.php │ │ ├── FormField.php │ │ ├── Pager.php │ │ └── plupload │ │ ├── Widget.php │ │ └── assets │ │ ├── changelog.txt │ │ ├── js │ │ ├── i18n │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lv.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr.js │ │ │ └── sv.js │ │ ├── jquery.plupload.queue │ │ │ ├── css │ │ │ │ └── jquery.plupload.queue.css │ │ │ ├── img │ │ │ │ ├── backgrounds.gif │ │ │ │ ├── buttons-disabled.png │ │ │ │ ├── buttons.png │ │ │ │ ├── delete.gif │ │ │ │ ├── done.gif │ │ │ │ ├── error.gif │ │ │ │ ├── throbber.gif │ │ │ │ └── transp50.png │ │ │ └── jquery.plupload.queue.js │ │ ├── jquery.ui.plupload │ │ │ ├── css │ │ │ │ └── jquery.ui.plupload.css │ │ │ ├── img │ │ │ │ ├── plupload-bw.png │ │ │ │ └── plupload.png │ │ │ └── jquery.ui.plupload.js │ │ ├── plupload.browserplus.js │ │ ├── plupload.flash.js │ │ ├── plupload.flash.swf │ │ ├── plupload.full.js │ │ ├── plupload.gears.js │ │ ├── plupload.html4.js │ │ ├── plupload.html5.js │ │ ├── plupload.js │ │ ├── plupload.silverlight.js │ │ └── plupload.silverlight.xap │ │ ├── license.txt │ │ ├── readme.md │ │ └── style.css ├── smime │ ├── AttachmentContextMenuOverride.js │ ├── CertificateDetailWindow.js │ ├── EventHandlers.php │ ├── INSTALL.TXT │ ├── PluginAccountDialog.js │ ├── PluginEmailComposer.js │ ├── PluginMessagePanel.js │ ├── PublicCertsGrid.js │ ├── SmimeModule.php │ ├── controller │ │ ├── CertificateController.php │ │ └── PublicCertificateController.php │ ├── dummycert.pem │ ├── install │ │ ├── install.sql │ │ ├── noautoinstall │ │ └── updates.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── he.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ro.php │ │ ├── sl.php │ │ └── sv.php │ ├── model │ │ ├── AccountSettings.php │ │ ├── Certificate.php │ │ ├── PublicCertificate.php │ │ └── Smime.php │ ├── scripts.txt │ └── themes │ │ └── Default │ │ ├── images │ │ └── smime.png │ │ └── style.css ├── summary │ ├── AnnouncementDialog.js │ ├── AnnouncementsGrid.js │ ├── AnnouncementsViewGrid.js │ ├── MainPanel.js │ ├── Portal.js │ ├── PortalColumn.js │ ├── Portlet.js │ ├── Portlets.js │ ├── SummaryModule.php │ ├── WebFeedsGrid.js │ ├── controller │ │ ├── AnnouncementController.php │ │ ├── NoteController.php │ │ └── RssFeedController.php │ ├── install │ │ ├── install.sql │ │ ├── uninstall.sql │ │ ├── updates.php │ │ └── updatescripts │ │ │ └── share_existing_announcements.php │ ├── language │ │ ├── bg.php │ │ ├── bn_bd.php │ │ ├── ca.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fi.php │ │ ├── fr.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sl.php │ │ ├── sv.php │ │ ├── th.php │ │ ├── tr.php │ │ └── zh_tw.php │ ├── model │ │ ├── Announcement.php │ │ ├── LatestReadAnnouncementRecord.php │ │ ├── Note.php │ │ ├── RssFeed.php │ │ └── UserCalendar.php │ ├── rssFeedPortlet.js │ ├── scripts.txt │ └── themes │ │ └── Default │ │ ├── images │ │ ├── note.png │ │ ├── rss.gif │ │ └── summary.png │ │ └── style.css ├── sync │ ├── Settings.js │ ├── SyncModule.php │ ├── controller │ │ ├── UserCalendarController.php │ │ └── UserTasklistController.php │ ├── install │ │ ├── install.sql │ │ ├── uninstall.sql │ │ └── updates.inc.php │ ├── language │ │ ├── bg.php │ │ ├── cn.php │ │ ├── cs.php │ │ ├── de.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fr.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── mn.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── pl.php │ │ ├── pt_br.php │ │ ├── pt_pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sl.php │ │ ├── sv.php │ │ └── th.php │ ├── model │ │ ├── Settings.php │ │ ├── UserAddressBook.php │ │ ├── UserCalendar.php │ │ ├── UserNoteBook.php │ │ ├── UserSettings.php │ │ └── UserTasklist.php │ ├── scripts.txt │ └── themes │ │ ├── Default │ │ ├── images │ │ │ └── sync.png │ │ └── style.css │ │ └── ExtJS │ │ ├── images │ │ └── sync.png │ │ └── style.css ├── tasks │ ├── TasksModule.php │ ├── install │ │ ├── uninstall.sql │ │ └── updates.inc.php │ └── language │ │ ├── bg.php │ │ ├── cn.php │ │ ├── de.php │ │ ├── mn.php │ │ ├── nb.php │ │ └── pt_pt.php ├── z-push │ ├── backend │ │ └── go │ │ │ ├── CalendarConvertor.php │ │ │ ├── CalendarStore.php │ │ │ ├── CalendarStore_old.php │ │ │ ├── ChangeExporter.php │ │ │ ├── ChangeImporter.php │ │ │ ├── ChangeState.php │ │ │ ├── ContactConvertor.php │ │ │ ├── ContactStore.php │ │ │ ├── MailStore.php │ │ │ ├── NoteStore.php │ │ │ ├── Store.php │ │ │ ├── StubStore.php │ │ │ ├── TaskStore.php │ │ │ ├── autodiscover.php │ │ │ ├── autoload.php │ │ │ ├── go.php │ │ │ └── goSyncUtils.php │ ├── bootstrap.php │ ├── config.php │ ├── index.php │ ├── wbxml.php │ ├── z-push-admin.php │ └── z-push-top.php └── zpushadmin │ ├── ZpushadminModule.php │ ├── controller │ ├── AdminController.php │ └── DeviceController.php │ ├── install │ ├── install.sql │ ├── uninstall.sql │ └── updates.php │ ├── language │ ├── bg.php │ ├── cn.php │ ├── cs.php │ ├── de.php │ ├── en.php │ ├── es.php │ ├── fr.php │ ├── he.php │ ├── hu.php │ ├── id.php │ ├── it.php │ ├── ja.php │ ├── mn.php │ ├── nb.php │ ├── nl.php │ ├── pl.php │ ├── pt_pt.php │ ├── ro.php │ ├── sl.php │ ├── sv.php │ └── th.php │ ├── model │ └── Device.php │ ├── themes │ └── Default │ │ ├── images │ │ └── zpushadmin.png │ │ └── style.css │ └── views │ └── Extjs3 │ ├── DeviceDialog.js │ ├── DevicePanel.js │ ├── DevicesGrid.js │ ├── MainPanel.js │ ├── Stores.js │ └── scripts.txt ├── public.php ├── robots.txt ├── version.php └── views ├── Extjs3 ├── Default.php ├── Disabled.php ├── Exception.php ├── Init.php ├── LoginHtml.php ├── Plain.php ├── Reminder.php ├── css.php ├── external.php ├── externalFooter.php ├── externalHeader.php ├── javascript │ ├── Base64.js │ ├── BlindPagingToolbar.js │ ├── CreateModifyTemplate.js │ ├── Cutstring.js │ ├── Date.js │ ├── DeployJava.js │ ├── DialogListeners.js │ ├── Export.js │ ├── JsonMenu.js │ ├── MainLayout.js │ ├── ModuleManager.js │ ├── NewMenuButton.js │ ├── RecordsContextMenu.js │ ├── SmallPagingToolbar.js │ ├── SortableDataView.js │ ├── TextFieldItem.js │ ├── base │ │ ├── ColumnSelectPanel.js │ │ ├── ContextMenu.js │ │ ├── CurrentGridExportDialog.js │ │ ├── ExportMenu.js │ │ ├── Form.js │ │ ├── QuickEditDialog.js │ │ ├── SavedExportDialog.js │ │ ├── SavedExportGrid.js │ │ ├── SavedExportGridDialog.js │ │ ├── email │ │ │ ├── EmailEditorAttachmentsView.js │ │ │ └── EmailEditorPanel.js │ │ ├── model │ │ │ ├── BatchEditModelDialog.js │ │ │ ├── ImportDialog.js │ │ │ ├── ImportPanel.js │ │ │ └── multiselect │ │ │ │ ├── AddDialog.js │ │ │ │ ├── Dialog.js │ │ │ │ └── Panel.js │ │ ├── tree │ │ │ └── TreeLoader.js │ │ ├── upload │ │ │ └── Paster.js │ │ └── util │ │ │ ├── Format.js │ │ │ └── MD5.js │ ├── blinkTitle.js │ ├── buttons │ │ ├── AddButton.js │ │ ├── DeleteButton.js │ │ └── QuickEditButton.js │ ├── checker.js │ ├── common.js │ ├── data │ │ ├── GroupingStore.js │ │ ├── JsonStore.js │ │ ├── LiveStore.js │ │ └── PrefetchProxy.js │ ├── debug.js │ ├── ext-all-debug.js │ ├── ext-base-debug.js │ ├── ext-locale │ │ ├── ext-lang-af.js │ │ ├── ext-lang-am.js │ │ ├── ext-lang-bg.js │ │ ├── ext-lang-ca.js │ │ ├── ext-lang-cs.js │ │ ├── ext-lang-da.js │ │ ├── ext-lang-de.js │ │ ├── ext-lang-el_GR.js │ │ ├── ext-lang-en.js │ │ ├── ext-lang-en_GB.js │ │ ├── ext-lang-es.js │ │ ├── ext-lang-et.js │ │ ├── ext-lang-fa.js │ │ ├── ext-lang-fi.js │ │ ├── ext-lang-fr.js │ │ ├── ext-lang-fr_CA.js │ │ ├── ext-lang-gr.js │ │ ├── ext-lang-he.js │ │ ├── ext-lang-hr.js │ │ ├── ext-lang-hu.js │ │ ├── ext-lang-id.js │ │ ├── ext-lang-it.js │ │ ├── ext-lang-ja.js │ │ ├── ext-lang-ko.js │ │ ├── ext-lang-lt.js │ │ ├── ext-lang-lv.js │ │ ├── ext-lang-mk.js │ │ ├── ext-lang-nl.js │ │ ├── ext-lang-no_NB.js │ │ ├── ext-lang-no_NN.js │ │ ├── ext-lang-pl.js │ │ ├── ext-lang-pt.js │ │ ├── ext-lang-pt_BR.js │ │ ├── ext-lang-pt_PT.js │ │ ├── ext-lang-ro.js │ │ ├── ext-lang-ru.js │ │ ├── ext-lang-sk.js │ │ ├── ext-lang-sl.js │ │ ├── ext-lang-sr.js │ │ ├── ext-lang-sr_RS.js │ │ ├── ext-lang-sv_SE.js │ │ ├── ext-lang-th-utf8.js │ │ ├── ext-lang-th.js │ │ ├── ext-lang-tr.js │ │ ├── ext-lang-ukr.js │ │ ├── ext-lang-vn.js │ │ ├── ext-lang-zh_CN.js │ │ └── ext-lang-zh_TW.js │ ├── form │ │ ├── ColorField.js │ │ ├── Combo.js │ │ ├── ComboBoxMulti.js │ │ ├── ComboReset.js │ │ ├── DateFieldReset.js │ │ ├── DateTime.js │ │ ├── DateTimeField.js │ │ ├── FieldHelp.js │ │ ├── FileUploadField.js │ │ ├── HtmlComponent.js │ │ ├── HtmlEditor.js │ │ ├── ListField.js │ │ ├── NumberField.js │ │ ├── PlainField.js │ │ ├── SearchField.js │ │ ├── SelectCountry.js │ │ ├── SelectGroup.js │ │ ├── SelectPriority.js │ │ ├── SelectUser.js │ │ ├── SuperBoxSelect.js │ │ ├── TimeField.js │ │ ├── TreeSelect.js │ │ ├── TriggerIdField.js │ │ ├── UploadFile.js │ │ ├── UploadPCForm.js │ │ └── XCheckbox.js │ ├── goui.js │ ├── grids │ │ ├── CheckColumn.js │ │ ├── ColumnRenderers.js │ │ ├── GORowEditor.js │ │ ├── GridPanel.js │ │ ├── GroupSummary.js │ │ ├── IconColumn.js │ │ ├── LiveGridPanel.js │ │ ├── ModulePermissionsGrid.js │ │ ├── MultiSelectGrid.js │ │ ├── NotifyDrop.js │ │ ├── RadioColumn.js │ │ ├── RemoteGridTotals.js │ │ ├── RowAction.js │ │ ├── RowEditor.js │ │ ├── RowExpander.js │ │ └── SimpleSelectList.js │ ├── links │ │ ├── ExternalLinkHandler.js │ │ ├── LinkBrowser.js │ │ ├── LinkDescriptionField.js │ │ ├── LinkFolderWindow.js │ │ ├── LinkTypeFilterPanel.js │ │ ├── LinkViewWindow.js │ │ ├── LinksAccordion.js │ │ ├── LinksContextMenu.js │ │ ├── LinksDialog.js │ │ ├── LinksGrid.js │ │ ├── LinksPanel.js │ │ ├── LinksTree.js │ │ └── SelectLink.js │ ├── namespaces.js │ ├── overrides.js │ ├── panels │ │ ├── AccordeonPanel.js │ │ ├── DetailView.js │ │ ├── DisplayPanel.js │ │ ├── Ext.ux.tot2ivn.VrTabPanel.js │ │ ├── GroupTab.js │ │ ├── GroupTabPanel.js │ │ ├── IframeComponent.js │ │ ├── PermissionsPanel.js │ │ ├── Portal.js │ │ ├── PortalColumn.js │ │ ├── Portlet.js │ │ ├── QuickAddPanel.js │ │ └── SearchPanel.js │ ├── plugins │ │ ├── DataView.js │ │ ├── Ext.ux.HtmlEditor.Plugins-0.2-all.js │ │ ├── HtmlEditorImageInsert.js │ │ ├── HtmlEditorImageResize.js │ │ ├── HtmlEditorSpellCheck.js │ │ ├── HtmlEditorTablePlugin.js │ │ ├── InsertAtCursorTextarea.js │ │ └── PanelCollapsedTitle.js │ ├── query │ │ ├── CriteriaFormPanel.js │ │ ├── QueryContextMenu.js │ │ ├── QueryPanel.js │ │ ├── SavedQueryDialog.js │ │ └── SavedQueryGrid.js │ ├── scripts.txt │ ├── state │ │ └── HttpProvider.js │ ├── vendor │ │ ├── chart.js │ │ ├── promise-polyfill.js │ │ └── purify.min.js │ └── windows │ │ ├── AboutDialog.js │ │ ├── DateDialog.js │ │ ├── ErrorDialog.js │ │ ├── ExportDialog.js │ │ ├── ExportGridDialog.js │ │ ├── MergeDialog.js │ │ ├── PasswordDialog.js │ │ ├── PersonalSettingsDialog.js │ │ ├── RequirePasswordResetDialog.js │ │ ├── SelectEmail.js │ │ ├── SelectGroups.js │ │ ├── SelectUsers.js │ │ ├── SummaryDialog.js │ │ ├── TabbedFormDialog.js │ │ └── Window.js ├── lang.php ├── language.php ├── modulescripts.php ├── script.php └── themes │ └── Paper │ ├── Layout.php │ ├── flags │ ├── LICENSE │ ├── README.md │ ├── blank.gif │ ├── flags.css │ ├── flags.min.css │ └── flags.png │ ├── fonts │ ├── Lato-Bold.eot │ ├── Lato-Bold.ttf │ ├── Lato-Bold.woff │ ├── Lato-Bold.woff2 │ ├── Lato-BoldItalic.eot │ ├── Lato-BoldItalic.ttf │ ├── Lato-BoldItalic.woff │ ├── Lato-BoldItalic.woff2 │ ├── Lato-Heavy.eot │ ├── Lato-Heavy.ttf │ ├── Lato-Heavy.woff │ ├── Lato-Heavy.woff2 │ ├── Lato-HeavyItalic.eot │ ├── Lato-HeavyItalic.ttf │ ├── Lato-HeavyItalic.woff │ ├── Lato-HeavyItalic.woff2 │ ├── Lato-Italic.eot │ ├── Lato-Italic.ttf │ ├── Lato-Italic.woff │ ├── Lato-Italic.woff2 │ ├── Lato-Light.eot │ ├── Lato-Light.ttf │ ├── Lato-Light.woff │ ├── Lato-Light.woff2 │ ├── Lato-LightItalic.eot │ ├── Lato-LightItalic.ttf │ ├── Lato-LightItalic.woff │ ├── Lato-LightItalic.woff2 │ ├── Lato-Medium.eot │ ├── Lato-Medium.ttf │ ├── Lato-Medium.woff │ ├── Lato-Medium.woff2 │ ├── Lato-MediumItalic.eot │ ├── Lato-MediumItalic.ttf │ ├── Lato-MediumItalic.woff │ ├── Lato-MediumItalic.woff2 │ ├── Lato-Regular.eot │ ├── Lato-Regular.ttf │ ├── Lato-Regular.woff │ ├── Lato-Regular.woff2 │ ├── Lato-Semibold.eot │ ├── Lato-Semibold.ttf │ ├── Lato-Semibold.woff │ ├── Lato-Semibold.woff2 │ ├── Lato-SemiboldItalic.eot │ ├── Lato-SemiboldItalic.ttf │ ├── Lato-SemiboldItalic.woff │ ├── Lato-SemiboldItalic.woff2 │ ├── OFL.txt │ ├── icons.ttf │ └── icons.woff2 │ ├── img │ ├── bg │ │ ├── background.svg │ │ ├── jigsaw.svg │ │ └── office-desk.jpg │ ├── broken-image.svg │ ├── business-avatar.svg │ ├── dark_light.png │ ├── default-avatar.svg │ ├── emoticons │ │ └── normal │ │ │ ├── angry.gif │ │ │ ├── bigsmile.gif │ │ │ ├── brb.gif │ │ │ ├── clock.gif │ │ │ ├── coffee.gif │ │ │ ├── computer.gif │ │ │ ├── confused.gif │ │ │ ├── cry.gif │ │ │ ├── dissapointed.gif │ │ │ ├── dontknow.gif │ │ │ ├── email.gif │ │ │ ├── ill.gif │ │ │ ├── kiss.gif │ │ │ ├── love.gif │ │ │ ├── mobile.gif │ │ │ ├── money.gif │ │ │ ├── notok.gif │ │ │ ├── ok.gif │ │ │ ├── party.gif │ │ │ ├── present.gif │ │ │ ├── sad.gif │ │ │ ├── sarcasm.gif │ │ │ ├── shy.gif │ │ │ ├── sleepy.gif │ │ │ ├── smile.gif │ │ │ ├── star.gif │ │ │ ├── sunglasses.gif │ │ │ ├── surprised.gif │ │ │ ├── telephone.gif │ │ │ ├── thinking.gif │ │ │ ├── tongue.gif │ │ │ └── wink.gif │ ├── favicon.ico │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── filetype │ │ ├── application-x-tiled.svg │ │ ├── application-x-yaml.svg │ │ ├── audio-x-flac.svg │ │ ├── cer.svg │ │ ├── doc.svg │ │ ├── dwg.svg │ │ ├── dxf.svg │ │ ├── eml.svg │ │ ├── folder.svg │ │ ├── folder_shared.svg │ │ ├── folder_special.svg │ │ ├── gpg.svg │ │ ├── html.svg │ │ ├── ics.svg │ │ ├── image.svg │ │ ├── iso.svg │ │ ├── js.svg │ │ ├── json.svg │ │ ├── kdbx.svg │ │ ├── pdf.svg │ │ ├── pgp.svg │ │ ├── php.svg │ │ ├── playlist.svg │ │ ├── ppt.svg │ │ ├── sound.svg │ │ ├── sql.svg │ │ ├── svg.svg │ │ ├── txt.svg │ │ ├── unknown.svg │ │ ├── vcf.svg │ │ ├── video.svg │ │ ├── wav.svg │ │ ├── xls.svg │ │ ├── xml.svg │ │ └── zip.svg │ ├── go-logo-color.svg │ ├── go-logo.svg │ ├── group-avatar.svg │ ├── groupoffice-logo.png │ ├── icon │ │ ├── gender-female.svg │ │ ├── gender-male-female.svg │ │ └── gender-male.svg │ ├── key.png │ ├── loading-spinner.gif │ ├── logo-blue.svg │ ├── logo-white.svg │ └── notify │ │ ├── email.png │ │ └── reminder.png │ ├── pageFooter.php │ ├── pageHeader.php │ ├── sounds │ ├── desktop-login.mp3 │ ├── desktop-login.ogg │ ├── desktop-logout.mp3 │ ├── desktop-logout.ogg │ ├── dialog-question.mp3 │ ├── dialog-question.ogg │ ├── message-new-email.mp3 │ └── message-new-email.ogg │ └── src │ ├── _base.scss │ ├── _compact.scss │ ├── _compat.scss │ ├── _config.scss │ ├── _ext-base.scss │ ├── _ext.scss │ ├── _go-style.scss │ ├── _icons.scss │ ├── _lato.scss │ ├── _modules.scss │ ├── _print.scss │ ├── _shadows.scss │ ├── _styles.scss │ ├── _theme.scss │ ├── _tools.scss │ ├── _typography.scss │ ├── _utils.scss │ ├── htmleditor.scss │ └── style.scss ├── Layout.php └── goui ├── README.md ├── esbuild-module.mjs ├── esbuild.mjs ├── package-lock.json ├── package.json └── tsconfig.module.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.gitmodules -------------------------------------------------------------------------------- /.run/start calendar.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.run/start calendar.run.xml -------------------------------------------------------------------------------- /.run/start core.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.run/start core.run.xml -------------------------------------------------------------------------------- /.run/start maildomains.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.run/start maildomains.run.xml -------------------------------------------------------------------------------- /.run/start projects.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.run/start projects.run.xml -------------------------------------------------------------------------------- /.run/start registration.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.run/start registration.run.xml -------------------------------------------------------------------------------- /.run/start supportclient.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/.run/start supportclient.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/RELEASE.TXT -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TODO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/TODO.TXT -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/jsconfig.json -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/qodana.yaml -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/cleanup.sql -------------------------------------------------------------------------------- /scripts/deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/deploy.php -------------------------------------------------------------------------------- /scripts/install-composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/install-composer.sh -------------------------------------------------------------------------------- /scripts/install-ioncube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/install-ioncube.sh -------------------------------------------------------------------------------- /scripts/install-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/install-npm.sh -------------------------------------------------------------------------------- /scripts/merge-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/merge-branch.sh -------------------------------------------------------------------------------- /scripts/sg_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/sg_install.sh -------------------------------------------------------------------------------- /scripts/update-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/update-git.sh -------------------------------------------------------------------------------- /scripts/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/scripts/watch.sh -------------------------------------------------------------------------------- /tests/bootstrap-install.php: -------------------------------------------------------------------------------- 1 | 'Încărcă fișier', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/dev/views/extjs3/scripts.txt: -------------------------------------------------------------------------------- 1 | DummyAuthenticatorPanel.js 2 | -------------------------------------------------------------------------------- /www/go/modules/community/dokuwiki/language/he.php: -------------------------------------------------------------------------------- 1 | 'Dokuwiki', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/dokuwiki/language/hu.php: -------------------------------------------------------------------------------- 1 | 'Dokuwiki', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/dokuwiki/language/it.php: -------------------------------------------------------------------------------- 1 | 'Dokuwiki', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/dokuwiki/language/ro.php: -------------------------------------------------------------------------------- 1 | 'Dokuwiki', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/dokuwiki/language/sv.php: -------------------------------------------------------------------------------- 1 | 'Dokuwiki', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/history/install/uninstall.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `history_log_entry`; -------------------------------------------------------------------------------- /www/go/modules/community/maildomains/language/cn.php: -------------------------------------------------------------------------------- 1 | '确定', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/maildomains/language/he.php: -------------------------------------------------------------------------------- 1 | 'موافقة', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/multi_instance/language/cn.php: -------------------------------------------------------------------------------- 1 | '模块', 4 | ); 5 | -------------------------------------------------------------------------------- /www/go/modules/community/otp/install/uninstall.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `otp_secret`; -------------------------------------------------------------------------------- /www/go/modules/community/pwned/views/extjs3/scripts.txt: -------------------------------------------------------------------------------- 1 | SystemSettings.js 2 | -------------------------------------------------------------------------------- /www/go/modules/community/serverclient/install/noautoinstall: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/go/modules/community/serverclient/views/extjs3/scripts.txt: -------------------------------------------------------------------------------- 1 | UserOverride.js -------------------------------------------------------------------------------- /www/go/modules/community/tasks/install/uninstall.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/go/vendor/pear/Auth/SASL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/go/vendor/pear/Auth/SASL.php -------------------------------------------------------------------------------- /www/go/vendor/pear/Net/Sieve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/go/vendor/pear/Net/Sieve.php -------------------------------------------------------------------------------- /www/go/vendor/pear/Net/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/go/vendor/pear/Net/Socket.php -------------------------------------------------------------------------------- /www/go/vendor/pear/PEAR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/go/vendor/pear/PEAR.php -------------------------------------------------------------------------------- /www/groupoffice: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd `dirname "$0"` 3 | sudo -u www-data ./groupofficecli.php -r="$@" 4 | -------------------------------------------------------------------------------- /www/groupofficecli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/groupofficecli.php -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/index.php -------------------------------------------------------------------------------- /www/install/clearcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/install/clearcache.php -------------------------------------------------------------------------------- /www/install/configfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/install/configfile.php -------------------------------------------------------------------------------- /www/install/finished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/install/finished.php -------------------------------------------------------------------------------- /www/install/footer.php: -------------------------------------------------------------------------------- 1 | 'WebDAV 서버', 4 | ); 5 | -------------------------------------------------------------------------------- /www/modules/dav/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/dav/language/nb.php -------------------------------------------------------------------------------- /www/modules/dav/language/pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/dav/language/pt_br.php -------------------------------------------------------------------------------- /www/modules/dav/language/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/dav/language/ru.php -------------------------------------------------------------------------------- /www/modules/dav/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/dav/language/sv.php -------------------------------------------------------------------------------- /www/modules/defaultsite/views/site/site/content.php: -------------------------------------------------------------------------------- 1 | getHtml(); 3 | -------------------------------------------------------------------------------- /www/modules/email/AccountDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/AccountDialog.js -------------------------------------------------------------------------------- /www/modules/email/AccountsDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/AccountsDialog.js -------------------------------------------------------------------------------- /www/modules/email/AccountsGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/AccountsGrid.js -------------------------------------------------------------------------------- /www/modules/email/AccountsTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/AccountsTree.js -------------------------------------------------------------------------------- /www/modules/email/AliasDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/AliasDialog.js -------------------------------------------------------------------------------- /www/modules/email/AliasesDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/AliasesDialog.js -------------------------------------------------------------------------------- /www/modules/email/AliasesGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/AliasesGrid.js -------------------------------------------------------------------------------- /www/modules/email/ContactsGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/ContactsGrid.js -------------------------------------------------------------------------------- /www/modules/email/EmailClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/EmailClient.js -------------------------------------------------------------------------------- /www/modules/email/EmailComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/EmailComposer.js -------------------------------------------------------------------------------- /www/modules/email/EmailModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/EmailModule.php -------------------------------------------------------------------------------- /www/modules/email/FilterDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/FilterDialog.js -------------------------------------------------------------------------------- /www/modules/email/FilterGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/FilterGrid.js -------------------------------------------------------------------------------- /www/modules/email/FolderDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/FolderDialog.js -------------------------------------------------------------------------------- /www/modules/email/FoldersDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/FoldersDialog.js -------------------------------------------------------------------------------- /www/modules/email/ImapAclDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/ImapAclDialog.js -------------------------------------------------------------------------------- /www/modules/email/LabelsGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/LabelsGrid.js -------------------------------------------------------------------------------- /www/modules/email/MessageDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/MessageDialog.js -------------------------------------------------------------------------------- /www/modules/email/MessagePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/MessagePanel.js -------------------------------------------------------------------------------- /www/modules/email/MessagesGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/MessagesGrid.js -------------------------------------------------------------------------------- /www/modules/email/Portlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/Portlet.js -------------------------------------------------------------------------------- /www/modules/email/PortletPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/PortletPanel.js -------------------------------------------------------------------------------- /www/modules/email/RecipientCombo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/RecipientCombo.js -------------------------------------------------------------------------------- /www/modules/email/SearchDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/SearchDialog.js -------------------------------------------------------------------------------- /www/modules/email/SelectAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/SelectAccount.js -------------------------------------------------------------------------------- /www/modules/email/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/Settings.js -------------------------------------------------------------------------------- /www/modules/email/TemplateCombo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/TemplateCombo.js -------------------------------------------------------------------------------- /www/modules/email/TemplatesGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/TemplatesGrid.js -------------------------------------------------------------------------------- /www/modules/email/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/bg.php -------------------------------------------------------------------------------- /www/modules/email/language/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/ca.php -------------------------------------------------------------------------------- /www/modules/email/language/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/cn.php -------------------------------------------------------------------------------- /www/modules/email/language/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/cs.php -------------------------------------------------------------------------------- /www/modules/email/language/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/da.php -------------------------------------------------------------------------------- /www/modules/email/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/de.php -------------------------------------------------------------------------------- /www/modules/email/language/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/el.php -------------------------------------------------------------------------------- /www/modules/email/language/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/en.php -------------------------------------------------------------------------------- /www/modules/email/language/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/es.php -------------------------------------------------------------------------------- /www/modules/email/language/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/et.php -------------------------------------------------------------------------------- /www/modules/email/language/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/fi.php -------------------------------------------------------------------------------- /www/modules/email/language/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/fr.php -------------------------------------------------------------------------------- /www/modules/email/language/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/he.php -------------------------------------------------------------------------------- /www/modules/email/language/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/hr.php -------------------------------------------------------------------------------- /www/modules/email/language/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/hu.php -------------------------------------------------------------------------------- /www/modules/email/language/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/id.php -------------------------------------------------------------------------------- /www/modules/email/language/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/it.php -------------------------------------------------------------------------------- /www/modules/email/language/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/ja.php -------------------------------------------------------------------------------- /www/modules/email/language/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/ko.php -------------------------------------------------------------------------------- /www/modules/email/language/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/mn.php -------------------------------------------------------------------------------- /www/modules/email/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/nb.php -------------------------------------------------------------------------------- /www/modules/email/language/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/nl.php -------------------------------------------------------------------------------- /www/modules/email/language/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/pl.php -------------------------------------------------------------------------------- /www/modules/email/language/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/ro.php -------------------------------------------------------------------------------- /www/modules/email/language/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/ru.php -------------------------------------------------------------------------------- /www/modules/email/language/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/sl.php -------------------------------------------------------------------------------- /www/modules/email/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/sv.php -------------------------------------------------------------------------------- /www/modules/email/language/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/th.php -------------------------------------------------------------------------------- /www/modules/email/language/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/language/tr.php -------------------------------------------------------------------------------- /www/modules/email/model/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/model/Account.php -------------------------------------------------------------------------------- /www/modules/email/model/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/model/Alias.php -------------------------------------------------------------------------------- /www/modules/email/model/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/model/Filter.php -------------------------------------------------------------------------------- /www/modules/email/model/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/model/Label.php -------------------------------------------------------------------------------- /www/modules/email/model/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/model/Message.php -------------------------------------------------------------------------------- /www/modules/email/scripts.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/scripts.inc.php -------------------------------------------------------------------------------- /www/modules/email/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/email/scripts.txt -------------------------------------------------------------------------------- /www/modules/files/BookmarksGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/BookmarksGrid.js -------------------------------------------------------------------------------- /www/modules/files/CompressDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/CompressDialog.js -------------------------------------------------------------------------------- /www/modules/files/ContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/ContextMenu.js -------------------------------------------------------------------------------- /www/modules/files/CustomField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/CustomField.js -------------------------------------------------------------------------------- /www/modules/files/DnDFileUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/DnDFileUpload.js -------------------------------------------------------------------------------- /www/modules/files/FileBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/FileBrowser.js -------------------------------------------------------------------------------- /www/modules/files/FilePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/FilePanel.js -------------------------------------------------------------------------------- /www/modules/files/FilesGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/FilesGrid.js -------------------------------------------------------------------------------- /www/modules/files/FilesModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/FilesModule.php -------------------------------------------------------------------------------- /www/modules/files/FolderPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/FolderPanel.js -------------------------------------------------------------------------------- /www/modules/files/ImageViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/ImageViewer.js -------------------------------------------------------------------------------- /www/modules/files/OpenFileWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/OpenFileWindow.js -------------------------------------------------------------------------------- /www/modules/files/Portlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/Portlet.js -------------------------------------------------------------------------------- /www/modules/files/SaveAsDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/SaveAsDialog.js -------------------------------------------------------------------------------- /www/modules/files/SelectFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/SelectFile.js -------------------------------------------------------------------------------- /www/modules/files/SelectFolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/SelectFolder.js -------------------------------------------------------------------------------- /www/modules/files/ThumbsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/ThumbsPanel.js -------------------------------------------------------------------------------- /www/modules/files/TreeFilePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/TreeFilePanel.js -------------------------------------------------------------------------------- /www/modules/files/TreePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/TreePanel.js -------------------------------------------------------------------------------- /www/modules/files/VersionsGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/VersionsGrid.js -------------------------------------------------------------------------------- /www/modules/files/demo/elmer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/demo/elmer.jpg -------------------------------------------------------------------------------- /www/modules/files/demo/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/demo/female.png -------------------------------------------------------------------------------- /www/modules/files/demo/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/demo/male.png -------------------------------------------------------------------------------- /www/modules/files/demo/noperson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/demo/noperson.jpg -------------------------------------------------------------------------------- /www/modules/files/demo/wecoyote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/demo/wecoyote.png -------------------------------------------------------------------------------- /www/modules/files/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/bg.php -------------------------------------------------------------------------------- /www/modules/files/language/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/ca.php -------------------------------------------------------------------------------- /www/modules/files/language/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/cn.php -------------------------------------------------------------------------------- /www/modules/files/language/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/cs.php -------------------------------------------------------------------------------- /www/modules/files/language/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/da.php -------------------------------------------------------------------------------- /www/modules/files/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/de.php -------------------------------------------------------------------------------- /www/modules/files/language/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/el.php -------------------------------------------------------------------------------- /www/modules/files/language/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/en.php -------------------------------------------------------------------------------- /www/modules/files/language/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/es.php -------------------------------------------------------------------------------- /www/modules/files/language/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/et.php -------------------------------------------------------------------------------- /www/modules/files/language/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/fi.php -------------------------------------------------------------------------------- /www/modules/files/language/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/fr.php -------------------------------------------------------------------------------- /www/modules/files/language/he.php: -------------------------------------------------------------------------------- 1 | 'موافقة', 4 | ); 5 | -------------------------------------------------------------------------------- /www/modules/files/language/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/hr.php -------------------------------------------------------------------------------- /www/modules/files/language/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/hu.php -------------------------------------------------------------------------------- /www/modules/files/language/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/id.php -------------------------------------------------------------------------------- /www/modules/files/language/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/it.php -------------------------------------------------------------------------------- /www/modules/files/language/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/ja.php -------------------------------------------------------------------------------- /www/modules/files/language/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/ko.php -------------------------------------------------------------------------------- /www/modules/files/language/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/mn.php -------------------------------------------------------------------------------- /www/modules/files/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/nb.php -------------------------------------------------------------------------------- /www/modules/files/language/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/nl.php -------------------------------------------------------------------------------- /www/modules/files/language/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/pl.php -------------------------------------------------------------------------------- /www/modules/files/language/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/ro.php -------------------------------------------------------------------------------- /www/modules/files/language/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/ru.php -------------------------------------------------------------------------------- /www/modules/files/language/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/sl.php -------------------------------------------------------------------------------- /www/modules/files/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/sv.php -------------------------------------------------------------------------------- /www/modules/files/language/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/th.php -------------------------------------------------------------------------------- /www/modules/files/language/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/language/tr.php -------------------------------------------------------------------------------- /www/modules/files/model/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/model/File.php -------------------------------------------------------------------------------- /www/modules/files/model/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/model/Folder.php -------------------------------------------------------------------------------- /www/modules/files/model/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/model/Version.php -------------------------------------------------------------------------------- /www/modules/files/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/files/scripts.txt -------------------------------------------------------------------------------- /www/modules/manualsite/views/site/site/content.php: -------------------------------------------------------------------------------- 1 | getHtml(); 3 | -------------------------------------------------------------------------------- /www/modules/modules/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/bg.php -------------------------------------------------------------------------------- /www/modules/modules/language/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/ca.php -------------------------------------------------------------------------------- /www/modules/modules/language/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/cn.php -------------------------------------------------------------------------------- /www/modules/modules/language/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/cs.php -------------------------------------------------------------------------------- /www/modules/modules/language/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/da.php -------------------------------------------------------------------------------- /www/modules/modules/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/de.php -------------------------------------------------------------------------------- /www/modules/modules/language/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/el.php -------------------------------------------------------------------------------- /www/modules/modules/language/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/en.php -------------------------------------------------------------------------------- /www/modules/modules/language/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/es.php -------------------------------------------------------------------------------- /www/modules/modules/language/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/et.php -------------------------------------------------------------------------------- /www/modules/modules/language/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/fi.php -------------------------------------------------------------------------------- /www/modules/modules/language/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/fr.php -------------------------------------------------------------------------------- /www/modules/modules/language/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/hr.php -------------------------------------------------------------------------------- /www/modules/modules/language/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/hu.php -------------------------------------------------------------------------------- /www/modules/modules/language/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/id.php -------------------------------------------------------------------------------- /www/modules/modules/language/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/it.php -------------------------------------------------------------------------------- /www/modules/modules/language/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/ko.php -------------------------------------------------------------------------------- /www/modules/modules/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/nb.php -------------------------------------------------------------------------------- /www/modules/modules/language/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/nl.php -------------------------------------------------------------------------------- /www/modules/modules/language/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/pl.php -------------------------------------------------------------------------------- /www/modules/modules/language/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/ro.php -------------------------------------------------------------------------------- /www/modules/modules/language/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/ru.php -------------------------------------------------------------------------------- /www/modules/modules/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/sv.php -------------------------------------------------------------------------------- /www/modules/modules/language/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/th.php -------------------------------------------------------------------------------- /www/modules/modules/language/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/modules/language/tr.php -------------------------------------------------------------------------------- /www/modules/postfixadmin/install/uninstall.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/modules/postfixadmin/language/cn.php: -------------------------------------------------------------------------------- 1 | '确定', 4 | ); 5 | -------------------------------------------------------------------------------- /www/modules/postfixadmin/language/he.php: -------------------------------------------------------------------------------- 1 | 'موافقة', 4 | ); 5 | -------------------------------------------------------------------------------- /www/modules/postfixadmin/scripts.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/modules/reminders/MainPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/reminders/MainPanel.js -------------------------------------------------------------------------------- /www/modules/reminders/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/reminders/scripts.txt -------------------------------------------------------------------------------- /www/modules/sieve/ActionGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/ActionGrid.js -------------------------------------------------------------------------------- /www/modules/sieve/ConditionPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/ConditionPanel.js -------------------------------------------------------------------------------- /www/modules/sieve/CriteriumGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/CriteriumGrid.js -------------------------------------------------------------------------------- /www/modules/sieve/INSTALL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/INSTALL.TXT -------------------------------------------------------------------------------- /www/modules/sieve/Overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/Overrides.js -------------------------------------------------------------------------------- /www/modules/sieve/SieveDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/SieveDialog.js -------------------------------------------------------------------------------- /www/modules/sieve/SieveGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/SieveGrid.js -------------------------------------------------------------------------------- /www/modules/sieve/SieveModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/SieveModule.php -------------------------------------------------------------------------------- /www/modules/sieve/Stores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/Stores.js -------------------------------------------------------------------------------- /www/modules/sieve/VacationDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/VacationDialog.js -------------------------------------------------------------------------------- /www/modules/sieve/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/bg.php -------------------------------------------------------------------------------- /www/modules/sieve/language/cn.php: -------------------------------------------------------------------------------- 1 | '确定', 4 | ); 5 | -------------------------------------------------------------------------------- /www/modules/sieve/language/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/cs.php -------------------------------------------------------------------------------- /www/modules/sieve/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/de.php -------------------------------------------------------------------------------- /www/modules/sieve/language/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/en.php -------------------------------------------------------------------------------- /www/modules/sieve/language/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/es.php -------------------------------------------------------------------------------- /www/modules/sieve/language/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/fr.php -------------------------------------------------------------------------------- /www/modules/sieve/language/he.php: -------------------------------------------------------------------------------- 1 | 'موافقة', 4 | ); 5 | -------------------------------------------------------------------------------- /www/modules/sieve/language/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/hr.php -------------------------------------------------------------------------------- /www/modules/sieve/language/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/hu.php -------------------------------------------------------------------------------- /www/modules/sieve/language/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/id.php -------------------------------------------------------------------------------- /www/modules/sieve/language/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/it.php -------------------------------------------------------------------------------- /www/modules/sieve/language/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/ja.php -------------------------------------------------------------------------------- /www/modules/sieve/language/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/ko.php -------------------------------------------------------------------------------- /www/modules/sieve/language/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/mn.php -------------------------------------------------------------------------------- /www/modules/sieve/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/nb.php -------------------------------------------------------------------------------- /www/modules/sieve/language/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/nl.php -------------------------------------------------------------------------------- /www/modules/sieve/language/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/pl.php -------------------------------------------------------------------------------- /www/modules/sieve/language/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/sl.php -------------------------------------------------------------------------------- /www/modules/sieve/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/language/sv.php -------------------------------------------------------------------------------- /www/modules/sieve/scripts.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/scripts.inc.php -------------------------------------------------------------------------------- /www/modules/sieve/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/scripts.txt -------------------------------------------------------------------------------- /www/modules/sieve/themes/Default/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/modules/sieve/util/Sieve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sieve/util/Sieve.php -------------------------------------------------------------------------------- /www/modules/site/SiteModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/SiteModule.php -------------------------------------------------------------------------------- /www/modules/site/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/index.php -------------------------------------------------------------------------------- /www/modules/site/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/bg.php -------------------------------------------------------------------------------- /www/modules/site/language/bn_bd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/bn_bd.php -------------------------------------------------------------------------------- /www/modules/site/language/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/cn.php -------------------------------------------------------------------------------- /www/modules/site/language/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/cs.php -------------------------------------------------------------------------------- /www/modules/site/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/de.php -------------------------------------------------------------------------------- /www/modules/site/language/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/en.php -------------------------------------------------------------------------------- /www/modules/site/language/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/es.php -------------------------------------------------------------------------------- /www/modules/site/language/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/fr.php -------------------------------------------------------------------------------- /www/modules/site/language/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/he.php -------------------------------------------------------------------------------- /www/modules/site/language/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/hr.php -------------------------------------------------------------------------------- /www/modules/site/language/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/hu.php -------------------------------------------------------------------------------- /www/modules/site/language/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/id.php -------------------------------------------------------------------------------- /www/modules/site/language/it.php: -------------------------------------------------------------------------------- 1 | 'Etichetta', 4 | ); 5 | -------------------------------------------------------------------------------- /www/modules/site/language/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/ja.php -------------------------------------------------------------------------------- /www/modules/site/language/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/mn.php -------------------------------------------------------------------------------- /www/modules/site/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/nb.php -------------------------------------------------------------------------------- /www/modules/site/language/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/nl.php -------------------------------------------------------------------------------- /www/modules/site/language/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/pl.php -------------------------------------------------------------------------------- /www/modules/site/language/pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/pt_br.php -------------------------------------------------------------------------------- /www/modules/site/language/pt_pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/pt_pt.php -------------------------------------------------------------------------------- /www/modules/site/language/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/ro.php -------------------------------------------------------------------------------- /www/modules/site/language/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/sl.php -------------------------------------------------------------------------------- /www/modules/site/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/language/sv.php -------------------------------------------------------------------------------- /www/modules/site/model/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/model/Content.php -------------------------------------------------------------------------------- /www/modules/site/model/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/model/Menu.php -------------------------------------------------------------------------------- /www/modules/site/model/MenuItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/model/MenuItem.php -------------------------------------------------------------------------------- /www/modules/site/model/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/model/Site.php -------------------------------------------------------------------------------- /www/modules/site/tag/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/tag/Link.php -------------------------------------------------------------------------------- /www/modules/site/tag/Thumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/tag/Thumb.php -------------------------------------------------------------------------------- /www/modules/site/widget/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/widget/Form.php -------------------------------------------------------------------------------- /www/modules/site/widget/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/site/widget/Pager.php -------------------------------------------------------------------------------- /www/modules/smime/EventHandlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/EventHandlers.php -------------------------------------------------------------------------------- /www/modules/smime/INSTALL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/INSTALL.TXT -------------------------------------------------------------------------------- /www/modules/smime/SmimeModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/SmimeModule.php -------------------------------------------------------------------------------- /www/modules/smime/dummycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/dummycert.pem -------------------------------------------------------------------------------- /www/modules/smime/install/noautoinstall: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/modules/smime/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/bg.php -------------------------------------------------------------------------------- /www/modules/smime/language/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/cn.php -------------------------------------------------------------------------------- /www/modules/smime/language/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/cs.php -------------------------------------------------------------------------------- /www/modules/smime/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/de.php -------------------------------------------------------------------------------- /www/modules/smime/language/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/en.php -------------------------------------------------------------------------------- /www/modules/smime/language/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/es.php -------------------------------------------------------------------------------- /www/modules/smime/language/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/fr.php -------------------------------------------------------------------------------- /www/modules/smime/language/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/he.php -------------------------------------------------------------------------------- /www/modules/smime/language/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/hu.php -------------------------------------------------------------------------------- /www/modules/smime/language/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/id.php -------------------------------------------------------------------------------- /www/modules/smime/language/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/it.php -------------------------------------------------------------------------------- /www/modules/smime/language/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/ja.php -------------------------------------------------------------------------------- /www/modules/smime/language/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/ko.php -------------------------------------------------------------------------------- /www/modules/smime/language/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/mn.php -------------------------------------------------------------------------------- /www/modules/smime/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/nb.php -------------------------------------------------------------------------------- /www/modules/smime/language/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/nl.php -------------------------------------------------------------------------------- /www/modules/smime/language/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/pl.php -------------------------------------------------------------------------------- /www/modules/smime/language/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/ro.php -------------------------------------------------------------------------------- /www/modules/smime/language/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/sl.php -------------------------------------------------------------------------------- /www/modules/smime/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/language/sv.php -------------------------------------------------------------------------------- /www/modules/smime/model/Smime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/model/Smime.php -------------------------------------------------------------------------------- /www/modules/smime/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/smime/scripts.txt -------------------------------------------------------------------------------- /www/modules/summary/MainPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/summary/MainPanel.js -------------------------------------------------------------------------------- /www/modules/summary/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/summary/Portal.js -------------------------------------------------------------------------------- /www/modules/summary/PortalColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/summary/PortalColumn.js -------------------------------------------------------------------------------- /www/modules/summary/Portlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/summary/Portlet.js -------------------------------------------------------------------------------- /www/modules/summary/Portlets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/summary/Portlets.js -------------------------------------------------------------------------------- /www/modules/summary/WebFeedsGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/summary/WebFeedsGrid.js -------------------------------------------------------------------------------- /www/modules/summary/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/summary/scripts.txt -------------------------------------------------------------------------------- /www/modules/sync/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/Settings.js -------------------------------------------------------------------------------- /www/modules/sync/SyncModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/SyncModule.php -------------------------------------------------------------------------------- /www/modules/sync/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/bg.php -------------------------------------------------------------------------------- /www/modules/sync/language/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/cn.php -------------------------------------------------------------------------------- /www/modules/sync/language/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/cs.php -------------------------------------------------------------------------------- /www/modules/sync/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/de.php -------------------------------------------------------------------------------- /www/modules/sync/language/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/en.php -------------------------------------------------------------------------------- /www/modules/sync/language/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/es.php -------------------------------------------------------------------------------- /www/modules/sync/language/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/fr.php -------------------------------------------------------------------------------- /www/modules/sync/language/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/hr.php -------------------------------------------------------------------------------- /www/modules/sync/language/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/hu.php -------------------------------------------------------------------------------- /www/modules/sync/language/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/id.php -------------------------------------------------------------------------------- /www/modules/sync/language/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/it.php -------------------------------------------------------------------------------- /www/modules/sync/language/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/ja.php -------------------------------------------------------------------------------- /www/modules/sync/language/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/ko.php -------------------------------------------------------------------------------- /www/modules/sync/language/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/mn.php -------------------------------------------------------------------------------- /www/modules/sync/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/nb.php -------------------------------------------------------------------------------- /www/modules/sync/language/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/nl.php -------------------------------------------------------------------------------- /www/modules/sync/language/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/pl.php -------------------------------------------------------------------------------- /www/modules/sync/language/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/ro.php -------------------------------------------------------------------------------- /www/modules/sync/language/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/ru.php -------------------------------------------------------------------------------- /www/modules/sync/language/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/sl.php -------------------------------------------------------------------------------- /www/modules/sync/language/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/sv.php -------------------------------------------------------------------------------- /www/modules/sync/language/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/sync/language/th.php -------------------------------------------------------------------------------- /www/modules/sync/scripts.txt: -------------------------------------------------------------------------------- 1 | modules/sync/Settings.js 2 | -------------------------------------------------------------------------------- /www/modules/tasks/TasksModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/tasks/TasksModule.php -------------------------------------------------------------------------------- /www/modules/tasks/language/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/tasks/language/bg.php -------------------------------------------------------------------------------- /www/modules/tasks/language/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/tasks/language/cn.php -------------------------------------------------------------------------------- /www/modules/tasks/language/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/tasks/language/de.php -------------------------------------------------------------------------------- /www/modules/tasks/language/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/tasks/language/mn.php -------------------------------------------------------------------------------- /www/modules/tasks/language/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/tasks/language/nb.php -------------------------------------------------------------------------------- /www/modules/z-push/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/z-push/bootstrap.php -------------------------------------------------------------------------------- /www/modules/z-push/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/z-push/config.php -------------------------------------------------------------------------------- /www/modules/z-push/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/z-push/index.php -------------------------------------------------------------------------------- /www/modules/z-push/wbxml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/z-push/wbxml.php -------------------------------------------------------------------------------- /www/modules/z-push/z-push-top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/modules/z-push/z-push-top.php -------------------------------------------------------------------------------- /www/modules/zpushadmin/install/uninstall.sql: -------------------------------------------------------------------------------- 1 | 2 | DROP TABLE IF EXISTS `zpa_devices`; -------------------------------------------------------------------------------- /www/modules/zpushadmin/language/cn.php: -------------------------------------------------------------------------------- 1 | '状态', 4 | ); 5 | -------------------------------------------------------------------------------- /www/public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/public.php -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/robots.txt -------------------------------------------------------------------------------- /www/version.php: -------------------------------------------------------------------------------- 1 | 2 | 2 |
-------------------------------------------------------------------------------- /www/views/Extjs3/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/Extjs3/lang.php -------------------------------------------------------------------------------- /www/views/Extjs3/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/Extjs3/language.php -------------------------------------------------------------------------------- /www/views/Extjs3/script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/Extjs3/script.php -------------------------------------------------------------------------------- /www/views/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/Layout.php -------------------------------------------------------------------------------- /www/views/goui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/goui/README.md -------------------------------------------------------------------------------- /www/views/goui/esbuild-module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/goui/esbuild-module.mjs -------------------------------------------------------------------------------- /www/views/goui/esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/goui/esbuild.mjs -------------------------------------------------------------------------------- /www/views/goui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/goui/package-lock.json -------------------------------------------------------------------------------- /www/views/goui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intermesh/groupoffice/HEAD/www/views/goui/package.json --------------------------------------------------------------------------------