Zimbra offers Open Source email server software and shared calendar for Linux and the Mac
Go Back   Zimbra :: Forums > Zimbra Collaboration Suite > Users

Welcome to the Zimbra :: Forums!
Welcome, if you would like to post a comment please register. We also encourage you to explore all things Zimbra with our team and members of the community.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #41 (permalink)  
Old 02-13-2010, 09:13 AM
Junior Member
 
Posts: 6
Default

Can't download, from zimlet gallery page

Code:
Not Found

The requested URL /home/y/share/htdocs/gallery//files/uploads/aff1537/zimbranotify.zip was not found on this server.

Last edited by sady; 02-13-2010 at 09:53 AM..
Reply With Quote
  #42 (permalink)  
Old 02-17-2010, 07:04 AM
Trained Alumni
 
Posts: 7
Default

Quote:
Originally Posted by pbruna View Post
Hi,
First im going to try to make some time an post the new version of zimbranotify im working on.
The error 501 is coming from the Zimbra Server, it has nothing to do with perl or any perl module, did you make any modification to the script? if is so, what modification did you do?
try user%40domain instead of user@domain
Reply With Quote
  #43 (permalink)  
Old 05-21-2010, 03:19 PM
Intermediate Member
 
Posts: 21
Default

I don't know whether it's ok to post this here but I just stumbled upon something that might interest some of those who use ubuntu:

Quote:
Created by Mitja Pagon to ‘scratch an itch’ (so to speak) it provides Zimbra users with convenient desktop integration – albeit basic – alerting them to new mail from all of their Zimbra e-mail accounts.
more Information:
Add Zimbra support to the Ubuntu messaging menu with Zimdicator | OMG! Ubuntu!
https://launchpad.net/zimdicator

Best regards
Reply With Quote
  #44 (permalink)  
Old 05-27-2010, 02:55 PM
Project Contributor
 
Posts: 1
Default

I just released version 0.2 of zimdicator. It's much more stable now, thanks to some wider testing. Also new in this release is notify-osd support, for displaying notifications on new mails and i18n support, which means that it's now fully translatable.

https://launchpad.net/zimdicator
Reply With Quote
  #45 (permalink)  
Old 05-27-2010, 03:22 PM
Loyal Member
 
Posts: 81
Default

Quote:
Originally Posted by sect2k View Post
I just released version 0.2 of zimdicator. It's much more stable now, thanks to some wider testing. Also new in this release is notify-osd support, for displaying notifications on new mails and i18n support, which means that it's now fully translatable.

https://launchpad.net/zimdicator
Excellent work! I saw this on OMG! Ubuntu earlier today. I installed it and it seems to work great. I attached a screen shot.

-n8
Attached Images
File Type: png Screenshot-1.png (160.3 KB, 90 views)
Reply With Quote
  #46 (permalink)  
Old 05-28-2010, 04:33 AM
Intermediate Member
 
Posts: 21
Default

Thanks a lot! That makes it even better now.
Reply With Quote
  #47 (permalink)  
Old 09-19-2011, 10:29 AM
Starter Member
 
Posts: 1
Default

Quote:
Originally Posted by sysinit View Post
Hi!

I also got the 501 HTTP error, but was able to find out the cause of the problem. If there is an ampersand (@) in the password, authentication fails because the GET-Request looks like this:

https://user:p@ssword@host.domain/zi...uery=is:unread

Of course this won't work...

The solution is to authenticate using the HTTP::Headers function:

--- zimbranotify.orig 2008-02-14 13:42:07.000000000 +0100
+++ zimbranotify 2009-06-16 18:51:49.000000000 +0200
@@ -707,10 +707,12 @@
my @username = split(/\@/,$user);
my $httpmode = $save_ssl ? "https" : "http";

- my $req_string = "$httpmode://$username[0]:$password\@$server$zimbra_path$user$zimbra_mail_u ri";
+ my $req_string = "$httpmode://$server$zimbra_path$user$zimbra_mail_uri";
$http_status->enqueue($trans{notify_check});

- my $req = HTTP::Request->new(GET => $req_string);
+ my $hdr = new HTTP::Headers;
+ $hdr->authorization_basic($username[0], $password);
+ my $req = HTTP::Request->new("GET", $req_string, $hdr);
my $error;

my $response = $ua->request($req);


Hope this helps... ;-)

Regards,
Daniel
This fixed it for me!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Why Join?

Registering let's you ask questions, makes it easier to search, displays any files attached to posts, and notifies you about replies.

blog.zimbra.com




 

SEO by vBSEO ©2011, Crawlability, Inc.