Search found 75 matches

by 10119metux
Thu Mar 06, 2014 4:31 am
Forum: Developers
Topic: Strange git repo
Replies: 2
Views: 1060

Strange git repo

Hi folks, while pulling the source via git, I've noticed the history (branch: ironmaiden-foss) completely changed, compared to last pull from Feb. 6th - the branches diverged on 3098 (!!!) commits. And when picking the corresponding commit from new branch which matches timestamp and message of the o...
by 10119metux
Wed Mar 05, 2014 7:52 pm
Forum: Installation and Upgrade
Topic: bundle installation
Replies: 9
Views: 2091

bundle installation

Hi folks, just digging out an ancient topic, as it's still as valid as it has been in 2006. Please also see my comments in a similar thread: ----http://www.zimbra.com/forums/users/127-fat-distribution-decision-2.html#post328830 ---- > [quote user="10330phoenix"] In the future the response ...
by 10119metux
Wed Mar 05, 2014 6:59 pm
Forum: Users
Topic: Fat Distribution Decision
Replies: 20
Views: 5588

Fat Distribution Decision

Hi folks, just digging out an ancient topic, as it is _still_ valid on various points: [quote user="halg"] I didn't care so much that I had to remove it from my system -- for whatever reasons you may care to attribute that decision -- it was simply that removing it from the system was more...
by 10119metux
Wed Aug 29, 2012 3:05 pm
Forum: Developers
Topic: Can Zimbra run a script or program on incoming email?
Replies: 3
Views: 1740

Can Zimbra run a script or program on incoming email?

You can write an little mailboxd extension (java) that catches mailbox such events and does the desired action (eg. calling another process, etc).
Of course, that all happens on server side, not within the client.
by 10119metux
Wed Aug 29, 2012 2:45 pm
Forum: Developers
Topic: Generic approach for storing credentials
Replies: 1
Views: 689

Generic approach for storing credentials

Hi folks, we're currently developing several zimlets that integrate with other systems (eg. cms, erp, etc). These zimlets (more precisely: their backend jsp code) need the proper user credentials to these external systems. For now, we're storing them in the user-zimlet-properties, but they can be ac...
by 10119metux
Wed Aug 29, 2012 2:00 pm
Forum: Developers
Topic: Zimbra Database
Replies: 4
Views: 1765

Zimbra Database

If you just look for an abstraction on accessing the local mailboxd node database, you can use zcs-lib-vnc-common for that: This">https://github.com/vnc-biz/zcs-lib-vnc-common This library is entirely designed for use with zmpkg, so you'll need that: https://github.com/vnc-biz/zcs-zmpkg > By th...
by 10119metux
Wed Aug 29, 2012 1:44 pm
Forum: Administrators
Topic: Mitigate against user enumeration vulnerability
Replies: 4
Views: 1677

Mitigate against user enumeration vulnerability

Hi folks, as some of you might already know, ZCS 7 is vulnerable against user enumeration attacks: In short terms: It's possible - without any prior authentication - to probe whether certain user exists via soap calls. ZCS will tell you whether that user exists, and for an existing one it also tells...
by 10119metux
Wed Aug 15, 2012 9:10 pm
Forum: Developers
Topic: debian 6 build
Replies: 3
Views: 1171

debian 6 build

Replace the word BRANCH by the name of the branch you wanna fetch, eg. HELIX. You also have to create /home/public/p4 and give the user running p4 rw access to it. Seriously, the p4 server tells the client where it has to put the files locally (sic!). I'd strongly suggest running this masterpiece of...
by 10119metux
Sat Mar 31, 2012 12:06 am
Forum: Administrators
Topic: Error deploying a zimlet from the gallery
Replies: 3
Views: 1144

Error deploying a zimlet from the gallery

I ran into similar problems when I tried to keep the version number in the zimlet zip file name. Turned out that zimlet structure is quite restricted. * the zimlet's name is taken by stripping the .zip suffix from the zipfile name * there *must* be a file +".xml" in the root directory of t...
by 10119metux
Tue Mar 27, 2012 1:23 pm
Forum: Developers
Topic: Hooking into the login process
Replies: 1
Views: 709

Hooking into the login process

Hi folks, is there any API for hooking into the login process w/o changing the core ? For one of our customers we needed to ask for an additional token on login. We've modified the core to run through our own JSP pages for that. While this works, it's obviously not ideal. So I'd like to know if ther...