view release on metacpan or search on metacpan
lib/Amazon/CloudFront/Thin.pm view on Meta::CPAN
need to pass those to Amazon::CloudFront::Thin's constructor as shown
in the SYNOPSIS and below, as C<aws_access_key_id> and
C<aws_secret_access_key>, respectively. Finally, please note that
B<the provided IAM credentials must have the rights to change your CloudFront>.
You can do that by clicking on the user (in the Amazon IAM console where
you created it) and attaching a policy to it, such as the
C<CloudFrontFullAccess> standard policy. Otherwise you'll get errors when
trying to invalidate your CloudFront distributions.
=head1 CONSTRUCTOR
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amazon/SES.pm view on Meta::CPAN
die "Could not deliver the message: " . $r->error_message;
}
printf("Sent successfully. MessageID: %s\n", $r->message_id);
######### sending attachments
my $msg = MIME::Entity->build();
my $r = $ses->send( $msg );
=head1 DESCRIPTION
lib/Amazon/SES.pm view on Meta::CPAN
subject => 'MIME msg from AWS SES',
data => "<h1>Hello world from AWS SES</h1>",
type => 'text/html'
);
$msg->attach(
Path => File::Spec->catfile( 't', 'image.gif' ),
Type => 'image/gif',
Encoding => 'base64'
);
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Ambrosia/CommonGatewayInterface/ApacheRequest.pm view on Meta::CPAN
{
push @headers, 'Window-Target: ' . $params{$_};
}
elsif( $k eq 'ATTACHMENT' )
{
push @headers, 'Content-Disposition: attachment; filename="' . $params{$_} . '"';
}
elsif( $k eq 'URI' )
{
push @headers, 'Location: ' . $params{$_};
}
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
factpacks/Linux.fact view on Meta::CPAN
AlsaPlayer => <reply> $who, PCM (audio) player for Linux/ALSA. URL: http://www.alsa-project.org/~andy/
Altara netlib => <reply> $who, Asynchronous networking library for Java. URL: http://www.altara.org/netlib.html
Altima => <reply> $who, A free version of the Ultima online. URL: http://www.worldforge.org/
AMANDA => <reply> $who, Advanced Maryland Automatic Network Disk Archiver. URL: http://www.amanda.org/
Amapi => <reply> $who, A free modeler for Linux. URL: http://www.tgs.com/Amapi/
AMaViS => <reply> $who, A Mail Virus Scanner, looks for viruses in e-mail attachments. URL: http://amavis.org/
Amaya => <reply> $who, Ttest-bed browser/authoring tool of the W3C. URL: http://www.w3.org/Amaya/
AMC => <reply> $who, Answering Machine Checker. URL: http://www.multimania.com/lionelbouton/
AMC (ATOM Module Compiler) => <reply> $who, A programmable compiler. URL: http://www.freeyellow.com/members7/mygfya/amc/
AMC Mail Client => <reply> $who, Gnome-Integrated Mail Client. URL: http://www.faceprint.com/~axion/index.html
Amcl => <reply> $who, A simple Mud CLient for X written in GTK libs.. URL: http://www.localhost.nu/apps/amcl/
factpacks/Linux.fact view on Meta::CPAN
Netnews => <reply> $who, News group article downloader. URL: http://www.stat.auckland.ac.nz/~blom001/netnews/index.html
NetPacket::* => <reply> $who, Decode/encode network packets in Perl. URL: http://www.cpan.org/modules/by-module/NetPacket/NetPacket-0.01.tar.gz
NetPBM => <reply> $who, The classic image manipulation/conversion utils. URL: ftp://wuarchive.wustl.edu/graphics/graphics/packages/NetPBM/
netpeek => <reply> $who, GNOME/GTK-based network packet sniffer. URL: http://www.nyerk.com/netpeek/
NetPipe => <reply> $who, Tool to broadcast data within a network. URL: http://members.xoom.com/neuron_x/netpipe.html
NetPipes => <reply> $who, Utilities to attach stdin/stdout utilities to network sockets. URL: http://web.purplefrog.com/~thoth/netpipes/
NetPlug => <reply> $who, . URL: http://www.demailly.com/~dl/netplug.html
NetReality => <reply> $who, Intelligent web search agent with unique neural net intelligence. URL: http://www.bittco.com/
NetSaint => <reply> $who, A relatively simple active network monitor. URL: http://www.netsaint.org/
Netscape audio plugin => <reply> $who, Plugin to play wav,snd,voc files. URL: http://parzelle.de/Linux/NSAudioPlugin/
Netscape Communicator => <reply> $who, All-in-one browser and communications suite. URL: http://home.netscape.com/
factpacks/Linux.fact view on Meta::CPAN
NetteBook => <reply> $who, Web-based PIM. URL: http://www.nettebook.org/
nettest => <reply> $who, Notifies you if your network connection goes down audibly or through email. URL: http://zorro.pangea.ca/~renec/nettest/index.php3
netUD => <reply> $who, Networked version of Matthew Trent's ud, an uptime logger/comparer with HTML o/p. URL: http://web.ukonline.co.uk/tristan.rowley/netud/index-ud.html
netwatch => <reply> $who, Ethernet Monitor. URL: http://www.slctech.org/~mackay/netwatch.html
NetWoorms => <reply> $who, Multiplayer, networked game, similar to 'nibbles' that runs on the console. URL: http://azzie.home.staszic.waw.pl/?en
Network Attached Secure Disk => <reply> $who, Network-attached storage prototype. URL: http://www.pdl.cs.cmu.edu/extreme/
Network Nibbles => <reply> $who, Fully networked nibbles. URL: http://agape.kuntrynet.com/src/nibbles/
Network Superscanner => <reply> $who, IP- and portscaner with a GTK-interface. URL: http://members.tripod.de/linux_progz/
Network UPS Tools => <reply> $who, Multiple vendor (APC, Powercom) UPS monitoring software. URL: http://www.exploits.org/nut/
net_sccs => <reply> $who, . URL: http://www.voicenet.com/~mortis/net_sccs/
neuralnets => <reply> $who, An extendable Neural Network. URL: http://members.home.net/neuralnets/
factpacks/Linux.fact view on Meta::CPAN
TmCde WEB frontend => <reply> $who, Timecode calculator (WEB frontend part). URL: http://www.epeios.org/
tmlm => <reply> $who, Powerful new mailing list manager. URL: http://ccwf.cc.utexas.edu/~taral/tmlm/
Tmp-audit => <reply> $who, Logs directory changes.. URL: http://poc.csoft.net/
tn3270 => <reply> $who, 3270 emulator for Unix. URL: http://www.luyer.net/software/tn3270/
tn5250 => <reply> $who, 5250 Terminal emulator for Linux, Unix and Win32. URL: http://www.blarg.net/~mmadore/5250.html
tnef => <reply> $who, Decodes application/ms-tnef attachments. URL: http://world.std.com/~damned/tnef-latest.tar.gz
TNT => <reply> $who, Emacs Clients for the AOL Instant Messenger service. URL: http://brokendreams.dyndns.com/tnt/
TNT Packet Radio Terminal => <reply> $who, A curses-based Packet Radio Terminal for Linux, Solaris, NetBSD.. URL: http://excelsior.kullen.rwth-aachen.de/WSPse/Packet.php3
TOAD => <reply> $who, C++ GUI library. URL: http://www.informatik.uni-rostock.de/~hopf/toad/
tob => <reply> $who, A simple yet configurable shell-script which runs tar or afio backups.. URL: http://www.icce.rug.nl/docs/programs/tob.html
Toba => <reply> $who, . URL: http://www.cs.arizona.edu/sumatra/toba/
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution
view release on metacpan or search on metacpan
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
view all matches for this distribution