IMAP::IMSP(3pm) | User Contributed Perl Documentation | IMAP::IMSP(3pm) |
Cyrus::IMAP::IMSP - Perl module for Cyrus IMSP user options
use Cyrus::IMAP::IMSP; my $client = Cyrus::IMAP::IMSP->new('imsphost'[, $port[, $flags]]); $rc = $client->set('mailreader.window.size', '200x300'); %options = $client->get('mailreader.*') $rc = $client->unset('mailreader.window.size');
This module is a Perl interface to the Cyrus IMSP functions that relate to user options (preferences). Only three IMSP operations are implemented: set, unset, and get.
Calling "error" does not reset the error state, so it is legal to write:
%options = $client->get($option); print STDERR "Error: ", $client->error if $client->error;
There are no restrictions or quoting rules needed to protect special characters in the value argument. (The Cyrus::IMAP layer will take care those details by adding double quotes or a literal introducer.)
If successful, returns 1. Otherwise, returns undef and makes an error message available through the "error" function.
If you try to unset an option that does not exist, an error is returned saying that the option was already unset.
If successful, returns 1. Otherwise, returns undef and makes an error message available through the "error" function.
The return value is a hash of options with each key being an option name and each value being the option's value string. If an empty hash is returned, it's either because there were no matching options or because some error happened. Check the "error" function to see which was the case.
The IMSP protocol also returns an access flag of "[READ-WRITE]" or "[READ-ONLY]" but that information is discarded by this function. A more complicated function that returns both the value and the access flag could be added later if needed.
Brandon S. Allbery, allbery@ece.cmu.edu IMSP modifications by Joseph Jackson, jackson@CMU.EDU
2022-06-27 | perl v5.32.1 |