aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2008-09-28 22:31:22 +0200
committerMatej Cepl <mcepl@redhat.com>2008-09-28 22:31:22 +0200
commitae6521930778b376ea061f44771580a4e8890289 (patch)
tree51632e747f4d2d69b7813629b6cfa5a06d0fc591
downloadimapArch-ae6521930778b376ea061f44771580a4e8890289.tar.gz
Initial commit
-rw-r--r--.includepath3
-rw-r--r--.project17
-rw-r--r--.settings/org.eclipse.ltk.core.refactoring.prefs3
-rw-r--r--.settings/org.eclipse.wst.validation.prefs6
-rw-r--r--playWithImap.pl13
5 files changed, 42 insertions, 0 deletions
diff --git a/.includepath b/.includepath
new file mode 100644
index 0000000..6dc9943
--- /dev/null
+++ b/.includepath
@@ -0,0 +1,3 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<includepath />
+
diff --git a/.project b/.project
new file mode 100644
index 0000000..0c38634
--- /dev/null
+++ b/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>imapArch</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.epic.perleditor.perlbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.epic.perleditor.perlnature</nature>
+ </natures>
+</projectDescription>
diff --git a/.settings/org.eclipse.ltk.core.refactoring.prefs b/.settings/org.eclipse.ltk.core.refactoring.prefs
new file mode 100644
index 0000000..6f5b144
--- /dev/null
+++ b/.settings/org.eclipse.ltk.core.refactoring.prefs
@@ -0,0 +1,3 @@
+#Sun Sep 28 22:23:36 CEST 2008
+eclipse.preferences.version=1
+org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false
diff --git a/.settings/org.eclipse.wst.validation.prefs b/.settings/org.eclipse.wst.validation.prefs
new file mode 100644
index 0000000..7df220c
--- /dev/null
+++ b/.settings/org.eclipse.wst.validation.prefs
@@ -0,0 +1,6 @@
+#Sun Sep 28 22:23:37 CEST 2008
+DELEGATES_PREFERENCE=delegateValidatorListorg.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator\=org.eclipse.wst.wsdl.validation.internal.eclipse.Validator;
+USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator;org.eclipse.wst.html.internal.validation.HTMLValidator;org.eclipse.wst.dtd.core.internal.validation.eclipse.Validator;org.eclipse.wst.xml.core.internal.validation.eclipse.Validator;
+USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator;org.eclipse.wst.html.internal.validation.HTMLValidator;org.eclipse.wst.dtd.core.internal.validation.eclipse.Validator;org.eclipse.wst.xml.core.internal.validation.eclipse.Validator;
+USER_PREFERENCE=overrideGlobalPreferencesfalse
+eclipse.preferences.version=1
diff --git a/playWithImap.pl b/playWithImap.pl
new file mode 100644
index 0000000..e722041
--- /dev/null
+++ b/playWithImap.pl
@@ -0,0 +1,13 @@
+#!/usr/bin/perl -Wall
+
+use strict;
+use Mail::IMAPClient;
+use Data::Dumper;
+
+my $imap = Mail::IMAPClient->new();
+$imap = Mail::IMAPClient->new(
+ Server => "localhost",
+ User => "matej",
+ Password => "lubdkc"
+) or die "Cannot connect to localhost as matej: $@";
+print Dumper($imap); \ No newline at end of file