Home
last modified time | relevance | path

Searched refs:pop3 (Results 1 – 25 of 1857) sorted by relevance

12345678910>>...75

/dports/mail/deforaos-mailer/Mailer-0.1.7/src/account/
H A Dpop3.c221 if((pop3 = malloc(sizeof(*pop3))) == NULL) in _pop3_init()
223 memset(pop3, 0, sizeof(*pop3)); in _pop3_init()
232 pop3->inbox.folder = pop3->helper->folder_new(pop3->helper->account, in _pop3_init()
234 pop3->trash.folder = pop3->helper->folder_new(pop3->helper->account, in _pop3_init()
236 pop3->source = g_idle_add(_on_connect, pop3); in _pop3_init()
267 if(pop3->fd >= 0 || pop3->source != 0) in _pop3_start()
270 pop3->source = g_idle_add(_on_connect, pop3); in _pop3_start()
352 p = &pop3->queue[pop3->queue_cnt]; in _pop3_command()
422 memmove(pop3->rd_buf, &pop3->rd_buf[j], pop3->rd_buf_cnt); in _pop3_parse()
800 if(SSL_set_fd(pop3->ssl, pop3->fd) != 1) in _on_watch_can_connect()
[all …]
/dports/mail/mailutils/mailutils-3.13/include/mailutils/
H A Dpop3.h35 int mu_pop3_create (mu_pop3_t *pop3);
36 void mu_pop3_destroy (mu_pop3_t *pop3);
41 int mu_pop3_connect (mu_pop3_t pop3);
42 int mu_pop3_disconnect (mu_pop3_t pop3);
50 int mu_pop3_trace (mu_pop3_t pop3, int op);
55 int mu_pop3_stls (mu_pop3_t pop3);
74 int mu_pop3_list_cmd (mu_pop3_t pop3);
78 int mu_pop3_noop (mu_pop3_t pop3);
82 int mu_pop3_quit (mu_pop3_t pop3);
89 int mu_pop3_rset (mu_pop3_t pop3);
[all …]
/dports/mail/mailutils/mailutils-3.13/libproto/pop/
H A Dpop3_response.c38 if (pop3 == NULL) in mu_pop3_response()
43 status = mu_stream_getline (pop3->carrier, &pop3->ackbuf, in mu_pop3_response()
44 &pop3->acksize, NULL); in mu_pop3_response()
51 else if (pop3->ackbuf) in mu_pop3_response()
69 if (pop3 == NULL) in mu_pop3_strresp()
73 return pop3->ackbuf; in mu_pop3_strresp()
79 if (pop3 == NULL) in mu_pop3_sget_response()
83 *sptr = pop3->ackbuf; in mu_pop3_sget_response()
92 if (pop3 == NULL) in mu_pop3_aget_response()
96 p = strdup (pop3->ackbuf); in mu_pop3_aget_response()
[all …]
H A Dpop3_stls.c41 streams[0] = pop3->carrier; in pop3_get_streams()
43 streams[1] = pop3->carrier; in pop3_get_streams()
73 mu_stream_unref (pop3->carrier); in pop3_set_streams()
74 pop3->carrier = tmp; in pop3_set_streams()
85 mu_pop3_stls (mu_pop3_t pop3) in mu_pop3_stls() argument
92 if (pop3 == NULL) in mu_pop3_stls()
95 switch (pop3->state) in mu_pop3_stls()
101 pop3->state = MU_POP3_STLS; in mu_pop3_stls()
106 MU_POP3_CHECK_OK (pop3); in mu_pop3_stls()
123 mu_list_destroy (&pop3->capa); in mu_pop3_stls()
[all …]
H A Dpop3_connect.c34 mu_pop3_connect (mu_pop3_t pop3) in mu_pop3_connect() argument
39 if (pop3 == NULL) in mu_pop3_connect()
43 if (pop3->carrier == NULL) in mu_pop3_connect()
47 switch (pop3->state) in mu_pop3_connect()
67 pop3->state = MU_POP3_CONNECT; in mu_pop3_connect()
77 pop3->state = MU_POP3_GREETINGS; in mu_pop3_connect()
85 MU_POP3_CHECK_EAGAIN (pop3, status); in mu_pop3_connect()
88 mu_stream_close (pop3->carrier); in mu_pop3_connect()
89 pop3->state = MU_POP3_NO_STATE; in mu_pop3_connect()
103 if (pop3->timestamp == NULL) in mu_pop3_connect()
[all …]
H A Dpop3_capa.c57 if (pop3 == NULL) in mu_pop3_capa()
60 if (pop3->capa) in mu_pop3_capa()
68 mu_list_destroy (&pop3->capa); in mu_pop3_capa()
71 status = mu_list_create (&pop3->capa); in mu_pop3_capa()
77 switch (pop3->state) in mu_pop3_capa()
82 MU_POP3_FCLR (pop3, MU_POP3_ACK); in mu_pop3_capa()
83 pop3->state = MU_POP3_CAPA; in mu_pop3_capa()
88 MU_POP3_CHECK_OK (pop3); in mu_pop3_capa()
89 pop3->state = MU_POP3_CAPA_RX; in mu_pop3_capa()
92 status = mu_pop3_read_list (pop3, pop3->capa); in mu_pop3_capa()
[all …]
H A Dpop3_trace.c35 _mu_pop3_trace_enable (mu_pop3_t pop3) in _mu_pop3_trace_enable() argument
40 if (!pop3->carrier) in _mu_pop3_trace_enable()
42 MU_POP3_FSET (pop3, MU_POP3_TRACE); in _mu_pop3_trace_enable()
59 mu_stream_unref (pop3->carrier); in _mu_pop3_trace_enable()
60 pop3->carrier = xstr; in _mu_pop3_trace_enable()
61 MU_POP3_FSET (pop3, MU_POP3_TRACE); in _mu_pop3_trace_enable()
69 _mu_pop3_trace_disable (mu_pop3_t pop3) in _mu_pop3_trace_disable() argument
71 mu_stream_t xstr = pop3->carrier; in _mu_pop3_trace_disable()
82 pop3->carrier = stream[0]; in _mu_pop3_trace_disable()
84 MU_POP3_FCLR (pop3, MU_POP3_TRACE); in _mu_pop3_trace_disable()
[all …]
H A Dpop3_top.c32 if (pop3 == NULL || msgno == 0) in mu_pop3_top()
37 switch (pop3->state) in mu_pop3_top()
41 MU_POP3_CHECK_ERROR (pop3, status); in mu_pop3_top()
42 MU_POP3_FCLR (pop3, MU_POP3_ACK); in mu_pop3_top()
43 pop3->state = MU_POP3_TOP; in mu_pop3_top()
46 status = mu_pop3_response (pop3, NULL); in mu_pop3_top()
47 MU_POP3_CHECK_EAGAIN (pop3, status); in mu_pop3_top()
48 MU_POP3_CHECK_OK (pop3); in mu_pop3_top()
50 MU_POP3_CHECK_ERROR (pop3, status); in mu_pop3_top()
52 _mu_pop3_xscript_level (pop3, MU_XSCRIPT_PAYLOAD); in mu_pop3_top()
[all …]
H A Dpop3_retr.c32 if (pop3 == NULL || msgno == 0) in mu_pop3_retr()
37 switch (pop3->state) in mu_pop3_retr()
41 MU_POP3_CHECK_ERROR (pop3, status); in mu_pop3_retr()
42 MU_POP3_FCLR (pop3, MU_POP3_ACK); in mu_pop3_retr()
43 pop3->state = MU_POP3_RETR; in mu_pop3_retr()
46 status = mu_pop3_response (pop3, NULL); in mu_pop3_retr()
47 MU_POP3_CHECK_EAGAIN (pop3, status); in mu_pop3_retr()
48 MU_POP3_CHECK_OK (pop3); in mu_pop3_retr()
50 MU_POP3_CHECK_ERROR (pop3, status); in mu_pop3_retr()
52 _mu_pop3_xscript_level (pop3, MU_XSCRIPT_PAYLOAD); in mu_pop3_retr()
[all …]
H A Dpop3_pass.c27 mu_pop3_pass (mu_pop3_t pop3, const char *passwd) in mu_pop3_pass() argument
31 if (pop3 == NULL || passwd == NULL) in mu_pop3_pass()
34 switch (pop3->state) in mu_pop3_pass()
38 _mu_pop3_xscript_level (pop3, MU_XSCRIPT_SECURE); in mu_pop3_pass()
41 MU_POP3_CHECK_ERROR (pop3, status); in mu_pop3_pass()
43 MU_POP3_FCLR (pop3, MU_POP3_ACK); in mu_pop3_pass()
44 pop3->state = MU_POP3_PASS; in mu_pop3_pass()
47 status = mu_pop3_response (pop3, NULL); in mu_pop3_pass()
48 MU_POP3_CHECK_EAGAIN (pop3, status); in mu_pop3_pass()
49 MU_POP3_CHECK_OK (pop3); in mu_pop3_pass()
[all …]
H A Dpop3_create.c33 mu_pop3_t pop3; in mu_pop3_create() local
39 pop3 = calloc (1, sizeof *pop3); in mu_pop3_create()
40 if (pop3 == NULL) in mu_pop3_create()
43 pop3->state = MU_POP3_NO_STATE; /* Init with no state. */ in mu_pop3_create()
45 MU_POP3_FCLR (pop3, MU_POP3_ACK); /* No Ack received. */ in mu_pop3_create()
47 *ppop3 = pop3; in mu_pop3_create()
52 _mu_pop3_init (mu_pop3_t pop3) in _mu_pop3_init() argument
54 if (pop3 == NULL) in _mu_pop3_init()
56 if (pop3->carrier == 0) in _mu_pop3_init()
58 mu_list_destroy (&pop3->capa); in _mu_pop3_init()
[all …]
H A Dpop3_carrier.c31 if (pop3 == NULL) in mu_pop3_set_carrier()
34 if (pop3->carrier) in mu_pop3_set_carrier()
37 mu_pop3_disconnect (pop3); in mu_pop3_set_carrier()
38 mu_stream_destroy (&pop3->carrier); in mu_pop3_set_carrier()
41 pop3->carrier = carrier; in mu_pop3_set_carrier()
42 if (MU_POP3_FISSET (pop3, MU_POP3_TRACE)) in mu_pop3_set_carrier()
43 _mu_pop3_trace_enable (pop3); in mu_pop3_set_carrier()
44 pop3->state = MU_POP3_CONNECT; in mu_pop3_set_carrier()
53 if (pop3 == NULL) in mu_pop3_get_carrier()
58 mu_stream_ref (pop3->carrier); in mu_pop3_get_carrier()
[all …]
H A Dpop3_quit.c27 mu_pop3_quit (mu_pop3_t pop3) in mu_pop3_quit() argument
31 if (pop3 == NULL) in mu_pop3_quit()
34 switch (pop3->state) in mu_pop3_quit()
38 MU_POP3_CHECK_ERROR (pop3, status); in mu_pop3_quit()
39 MU_POP3_FCLR (pop3, MU_POP3_ACK); in mu_pop3_quit()
40 pop3->state = MU_POP3_QUIT; in mu_pop3_quit()
43 status = mu_pop3_response (pop3, NULL); in mu_pop3_quit()
44 MU_POP3_CHECK_EAGAIN (pop3, status); in mu_pop3_quit()
45 MU_POP3_CHECK_OK (pop3); in mu_pop3_quit()
46 pop3->state = MU_POP3_NO_STATE; in mu_pop3_quit()
[all …]
H A Dpop3_apop.c39 if (pop3 == NULL || user == NULL || secret == NULL) in mu_pop3_apop()
43 if (pop3->timestamp == NULL) in mu_pop3_apop()
46 switch (pop3->state) in mu_pop3_apop()
58 mu_md5_process_bytes (pop3->timestamp, strlen (pop3->timestamp), in mu_pop3_apop()
69 MU_POP3_CHECK_ERROR (pop3, status); in mu_pop3_apop()
70 MU_POP3_FCLR (pop3, MU_POP3_ACK); in mu_pop3_apop()
71 pop3->state = MU_POP3_APOP; in mu_pop3_apop()
75 status = mu_pop3_response (pop3, NULL); in mu_pop3_apop()
76 MU_POP3_CHECK_EAGAIN (pop3, status); in mu_pop3_apop()
77 MU_POP3_CHECK_OK (pop3); in mu_pop3_apop()
[all …]
/dports/devel/tcllib/tcllib-1.20/modules/pop3/
H A Dpop3.test2 # pop3.test: tests for the pop3 client.
32 useLocal pop3.tcl pop3
286 test pop3-0.8 {open pop3 channel} {
307 test pop3-0.10 {multiple open pop3 channel to same maildrop} {
332 pop3::close $psock
343 pop3::close $psock
378 pop3::close $psock
398 pop3::close $psock
439 pop3::close $psock
517 test pop3-3.5 {top} {
[all …]
H A DChangeLog25 * pop3.test (pop3-7.0): Updated for additional configure options
68 * pop3.tcl (::pop3::open): Extended to accept a new option
157 * pop3.tcl (::pop3::open): Capitalized the user and pass
186 * pop3.man:
230 * pop3.tcl:
231 * pop3.man:
265 * pop3.test:
335 * pop3.n:
336 * pop3.tcl:
400 * pop3.tcl:
[all …]
/dports/devel/tcllibc/tcllib-1.20/modules/pop3/
H A Dpop3.test2 # pop3.test: tests for the pop3 client.
32 useLocal pop3.tcl pop3
286 test pop3-0.8 {open pop3 channel} {
307 test pop3-0.10 {multiple open pop3 channel to same maildrop} {
332 pop3::close $psock
343 pop3::close $psock
378 pop3::close $psock
398 pop3::close $psock
439 pop3::close $psock
517 test pop3-3.5 {top} {
[all …]
H A DChangeLog25 * pop3.test (pop3-7.0): Updated for additional configure options
68 * pop3.tcl (::pop3::open): Extended to accept a new option
157 * pop3.tcl (::pop3::open): Capitalized the user and pass
186 * pop3.man:
230 * pop3.tcl:
231 * pop3.man:
265 * pop3.test:
335 * pop3.n:
336 * pop3.tcl:
400 * pop3.tcl:
[all …]
/dports/mail/mailutils/mailutils-3.13/libmu_cpp/
H A Dpop3.cc29 int status = mu_pop3_create (&pop3); in Pop3()
36 Pop3 :: Pop3 (const mu_pop3_t pop3) in Pop3() argument
38 if (pop3 == 0) in Pop3()
41 this->pop3 = pop3; in Pop3()
47 mu_pop3_destroy (&pop3); in ~Pop3()
69 int status = mu_pop3_connect (pop3); in connect()
113 int status = mu_pop3_stls (pop3); in stls()
165 int status = mu_pop3_noop (pop3); in noop()
181 int status = mu_pop3_quit (pop3); in quit()
201 int status = mu_pop3_rset (pop3); in rset()
[all …]
/dports/security/ossec-hids-server/ossec-hids-3.6.0/etc/rules/log-entries/
H A Dvpopmail1 Sep 14 07:21:42 iron vpopmail[939]: vchkpw-pop3: password fail keith1@xxxx.com:219.136.100.198
2 Sep 14 07:21:42 iron vpopmail[937]: vchkpw-pop3: password fail keith2@xxxx.com:219.136.100.198
3 Sep 14 07:21:42 iron vpopmail[935]: vchkpw-pop3: password fail keith3@xxxx.com:219.136.100.198
4 Sep 14 07:21:42 iron vpopmail[931]: vchkpw-pop3: password fail keith4@xxxx.com:219.136.100.198
5 Sep 14 07:21:41 iron vpopmail[923]: vchkpw-pop3: password fail keith5@xxxx.com:219.136.100.198
6 Sep 14 07:21:40 iron vpopmail[910]: vchkpw-pop3: password fail keith6@xxxx.com:219.136.100.198
7 Sep 14 07:21:40 iron vpopmail[903]: vchkpw-pop3: password fail keith7@xxxx.com:219.136.100.198
8 Sep 14 07:21:40 iron vpopmail[901]: vchkpw-pop3: password fail keith9@xxxx.com:219.136.100.198
9 Sep 14 07:21:39 iron vpopmail[899]: vchkpw-pop3: password fail keitha@xxxx.com:219.136.100.198
10 Sep 14 07:21:39 iron vpopmail[896]: vchkpw-pop3: password fail keithb@xxxx.com:219.136.100.198
[all …]
/dports/security/ossec-hids-local/ossec-hids-3.6.0/etc/rules/log-entries/
H A Dvpopmail1 Sep 14 07:21:42 iron vpopmail[939]: vchkpw-pop3: password fail keith1@xxxx.com:219.136.100.198
2 Sep 14 07:21:42 iron vpopmail[937]: vchkpw-pop3: password fail keith2@xxxx.com:219.136.100.198
3 Sep 14 07:21:42 iron vpopmail[935]: vchkpw-pop3: password fail keith3@xxxx.com:219.136.100.198
4 Sep 14 07:21:42 iron vpopmail[931]: vchkpw-pop3: password fail keith4@xxxx.com:219.136.100.198
5 Sep 14 07:21:41 iron vpopmail[923]: vchkpw-pop3: password fail keith5@xxxx.com:219.136.100.198
6 Sep 14 07:21:40 iron vpopmail[910]: vchkpw-pop3: password fail keith6@xxxx.com:219.136.100.198
7 Sep 14 07:21:40 iron vpopmail[903]: vchkpw-pop3: password fail keith7@xxxx.com:219.136.100.198
8 Sep 14 07:21:40 iron vpopmail[901]: vchkpw-pop3: password fail keith9@xxxx.com:219.136.100.198
9 Sep 14 07:21:39 iron vpopmail[899]: vchkpw-pop3: password fail keitha@xxxx.com:219.136.100.198
10 Sep 14 07:21:39 iron vpopmail[896]: vchkpw-pop3: password fail keithb@xxxx.com:219.136.100.198
[all …]
/dports/security/ossec-hids-agent/ossec-hids-3.6.0/etc/rules/log-entries/
H A Dvpopmail1 Sep 14 07:21:42 iron vpopmail[939]: vchkpw-pop3: password fail keith1@xxxx.com:219.136.100.198
2 Sep 14 07:21:42 iron vpopmail[937]: vchkpw-pop3: password fail keith2@xxxx.com:219.136.100.198
3 Sep 14 07:21:42 iron vpopmail[935]: vchkpw-pop3: password fail keith3@xxxx.com:219.136.100.198
4 Sep 14 07:21:42 iron vpopmail[931]: vchkpw-pop3: password fail keith4@xxxx.com:219.136.100.198
5 Sep 14 07:21:41 iron vpopmail[923]: vchkpw-pop3: password fail keith5@xxxx.com:219.136.100.198
6 Sep 14 07:21:40 iron vpopmail[910]: vchkpw-pop3: password fail keith6@xxxx.com:219.136.100.198
7 Sep 14 07:21:40 iron vpopmail[903]: vchkpw-pop3: password fail keith7@xxxx.com:219.136.100.198
8 Sep 14 07:21:40 iron vpopmail[901]: vchkpw-pop3: password fail keith9@xxxx.com:219.136.100.198
9 Sep 14 07:21:39 iron vpopmail[899]: vchkpw-pop3: password fail keitha@xxxx.com:219.136.100.198
10 Sep 14 07:21:39 iron vpopmail[896]: vchkpw-pop3: password fail keithb@xxxx.com:219.136.100.198
[all …]
/dports/net/apache-commons-net/commons-net-3.8.0/org/apache/commons/net/examples/mail/
H A DPOP3Mail.java82 final POP3Client pop3; in main() local
107 pop3.connect(server); in main()
121 pop3.disconnect(); in main()
128 pop3.logout(); in main()
129 pop3.disconnect(); in main()
140 pop3.logout(); in main()
141 pop3.disconnect(); in main()
147 pop3.logout(); in main()
148 pop3.disconnect(); in main()
166 pop3.logout(); in main()
[all …]
/dports/mail/cone/cone-1.1/libmail/
H A Dpop3.C99 class mail::pop3::LoggedInTask : public mail::pop3::Task,
235 class mail::pop3::LoginTask : public mail::pop3::Task,
286 mail::pop3::LoginTask::LoginTask(mail::pop3 &server, in LoginTask()
1178 class mail::pop3::LogoutTask : public mail::pop3::Task {
1199 mail::pop3::LogoutTask::LogoutTask(mail::pop3 &server, in LogoutTask()
1370 mail::pop3::UpdateTask::UpdateTask(mail::pop3 &serverArg, in UpdateTask()
1810 void mail::pop3
1934 class mail::pop3::NoopTask : public mail::pop3::LoggedInTask {
1943 mail::pop3::NoopTask::NoopTask(mail::pop3 &serverArg) in NoopTask()
1981 mail::pop3::pop3(string url, string passwd, in pop3() function
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/typed-racket-more/typed/net/
H A Dpop3.rkt8 net/pop3)
10 (require/typed/provide net/pop3
27 (require-typed-struct/provide (pop3 exn)
28 () #:extra-constructor-name make-pop3 net/pop3)
29 (require-typed-struct/provide (cannot-connect pop3)
30 () #:extra-constructor-name make-cannot-connect net/pop3)
31 (require-typed-struct/provide (username-rejected pop3)
33 (require-typed-struct/provide (password-rejected pop3)
39 (require-typed-struct/provide (not-given-headers pop3)
45 (require-typed-struct/provide (cannot-delete-message pop3)
[all …]

12345678910>>...75