Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



Mail::DKIM::SignerPolicy(3)          User Contributed Perl Documentation         Mail::DKIM::SignerPolicy(3)



NAME
       Mail::DKIM::SignerPolicy - determines signing parameters for a message

DESCRIPTION
       A "signer policy" is an object, class, or function used by Mail::DKIM::Signer to determine what
       signatures to add to the current message. To take advantage of signer policies, create your own Perl
       class that extends the Mail::DKIM::SignerPolicy class.  The only method you need to implement is the
       apply() method.

       The apply() method takes as a parameter the Mail::DKIM::Signer object.  Using this object, it can
       determine some properties of the message (e.g.  what the From: address or Sender: address is). Then
       it sets various signer properties as desired. The apply() method should return a nonzero value if the
       message should be signed. If a false value is returned, then the message is "skipped" (i.e. not
       signed).

       Here is an example of a policy that always returns the same values:

         package MySignerPolicy;
         use base "Mail::DKIM::SignerPolicy";

         sub apply
         {
             my $self = shift;
             my $signer = shift;

             $signer->algorithm("rsa-sha1");
             $signer->method("relaxed");
             $signer->domain("example.org");
             $signer->selector("selector1");
             $signer->key_file("private.key");

             return 1;
         }

       To use this policy, simply specify the name of the class as the Policy parameter...

         my $dkim = Mail::DKIM::Signer->new(
                         Policy => "MySignerPolicy",
                    );

ADVANCED
       You can also have the policy actually build the signature for the Signer to use. To do this, call the
       signer's add_signature() method from within your apply() callback. E.g.,

         sub apply
         {
             my $self = shift;
             my $signer = shift;

             $signer->add_signature(
                     new Mail::DKIM::Signature(
                         Algorithm => $signer->algorithm,
                         Method => $signer->method,
                         Headers => $signer->headers,
                         Domain => $signer->domain,
                         Selector => $signer->selector,
                     ));
             return;
         }

       Again, if you do not want any signatures, return zero or undef. If you use add_signature() to create
       a signature, the default signature will not be created, even if you return nonzero.

AUTHOR
       Jason Long, <jlong@messiah.edu>

COPYRIGHT AND LICENSE
       Copyright (C) 2006-2007 by Messiah College

       This library is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have
       available.



perl v5.16.2                                     2008-08-25                      Mail::DKIM::SignerPolicy(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.