- ARCHIVE / Alfresco
- Alfresco Zimlet – updates and fixes
I’ve made an updated version of open-sourced Alfresco Zimlet. New features and fixes: SSO ticket based authentication support (‘alfresco_ticket’ and ‘alfresco_url’ cookies) localization support (english and hungarian properties included) works with Alfresco 4.x and Zimbra 7.x bugfixes… See README file for installation… Alfresco side webscript installation steps: 1. Import web script package (ZIP) at Alfresco [...]
- removePermission for all users/groups workaround
I take an ugly bug in removePermission JavaScript function of Alfresco 4.0.d Community Edition. You can reproduce by this sample script: var node = companyhome.childByNamePath("User Homes/louise"); permissions = node.getPermissions(); print("Before removePermission:"); print(permissions); node.removePermission("Coordinator"); permissions = node.getPermissions(); print("After removePermission:"); print(permissions); Results should be: Before removePermission: 0 : ALLOWED;louise;All 1 : ALLOWED;ROLE_OWNER;All 2 : [...]
- Inbound e-mail and gmail.com accounts
I’ve tested Alfresco 4.0.d inbound email (to Space with Alias) configuration with Google Mail STMP, but mails not received… To get the solution first increase logging level for subethamail package: log4j.logger.org.subethamail.smtp.server=debug Let see the log events: 00:08:30,585 DEBUG [org.subethamail.smtp.server.Session] SMTP connection from mail-wg0-f45.google.com/74.125.82.45, new connection count: 1 00:08:30,586 DEBUG [org.subethamail.smtp.server.Session] Server: 220 alfresco.louise.hu ESMTP SubEthaSMTP [...]
- Zimbra briefcase export tool
Simple shell script to retrieve all user accounts from Zimbra, and recursively download Briefcase contents into user-named subfolders. Script requires https url of zimbra server with active admin account/password. #!/bin/bash # # Zimbra Briefcases export tool by LouiSe@louise.hu # # Usage (run on Zimbra server): # ./zimbra-briefcase-export.sh "https://myzimbra.com:7071" "admin@myzimbra.com" "mypassword" # ZIMBRA_HOST=$1 ACCOUNT_LIST=/tmp/zimbra_accounts.txt ACCOUNT_ADMIN=$2 [...]
- Alfresco with Zimbra LDAP
So, i’ve done with a working LDAP configuration to sync users and groups from Zimbra (see below), but one thing missing yet… The Alfresco synchronizer service reads from LDAP and writes all users and all groups into repository, but does not reproduce nested group hierarchy. Retrieve Zimbra LDAP root password: zmlocalconfig -s zimbra_ldap_password Let see [...]
- Enable “remote” root object in Alfresco 3.4+
From the 3.3 version Alfresco is overriding the Spring Surf webscripts container bean removing the remote definition. This modification also affects number of custom webscripts developed with previous releases. Let see, how to enable “remote” root object in current Alfresco installation; 1. Find your “web-scripts-application-context.xml” configuration file in alfresco webapp, or in shared classes. 2. [...]
- Alfresco 4.0
Ha hihetünk a roadmap-nek, akkor még szeptemberben megjelenik az Alfresco 4.0 community verziója, mely talán a szoftver eddigi legnagyobb fejlődési állomásának tekinthető. Az előzetes verzió nightly build formájában érhető el, egyelőre szigorúan csak fejlesztők számára javasolt állapotban. Mindenesetre egy pillantást célszerű vetni rá, hiszen pontosan azokon a részeken javítottak a fejlesztők, amire a legtöbb panasz [...]
- Alfresco Share – magyar lokalizáció
Az utóbbi napokban komoly ellenőrzésen és javításokon esett át az Alfresco magyar lokalizáció régebbi kiadása, így lassan elmondható, hogy az Alfresco Explorer 3.4-es felülete 100%-ban magyarul használható. Ezek mellett nekiálltam a Share lokalizációjának is, ami jóval nagyobb feladat, mint az Explorer – millió apró file-t kell lefordítani, ráadásul van több olyan rész is, amit benne [...]