- ARCHIVE / English
- 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 [...]
- Midnight Commander 4.8.1.3 OSX
GNU Midnight Commander (also referred to as MC) is a user shell with text-mode full-screen interface. It can be run on the OS console, in xterm and other terminal emulators. GNU Midnight Commander allows you to manage files while making most of you screen and giving you a clear representation of the filesystem, yet it’s [...]
- Midnight Commander 4.8.0 OSX
GNU Midnight Commander (also referred to as MC) is a user shell with text-mode full-screen interface. It can be run on the OS console, in xterm and other terminal emulators. GNU Midnight Commander allows you to manage files while making most of you screen and giving you a clear representation of the filesystem, yet it’s [...]
- 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. [...]