Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FakeSMTPHelper.php « bootstrap « features « integration « build - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a64b6d31dec26180f6ca2a989e8591756be45b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php

// Code below modified from https://github.com/axllent/fake-smtp/blob/f0856f8a0df6f4ca5a573cf31428c09ebc5b9ea3/fakeSMTP.php,
// which is under the MIT license (https://github.com/axllent/fake-smtp/blob/f0856f8a0df6f4ca5a573cf31428c09ebc5b9ea3/LICENSE)

/**
 * fakeSMTP - A PHP / inetd fake smtp server.
 * Allows client<->server interaction
 * The comunication is based upon the SMPT standards defined in http://www.lesnikowski.com/mail/Rfc/rfc2821.txt
 */

class fakeSMTP {
	public $logFile = false;
	public $serverHello = 'fakeSMTP ESMTP PHP Mail Server Ready';

	public function __construct($fd) {
		$this->mail = [];
		$this->mail['ipaddress'] = false;
		$this->mail['emailSender'] = '';
		$this->mail['emailRecipients'] = [];
		$this->mail['emailSubject'] = false;
		$this->mail['rawEmail'] = false;
		$this->mail['emailHeaders'] = false;
		$this->mail['emailBody'] = false;

		$this->fd = $fd;
	}

	public function receive() {
		$hasValidFrom = false;
		$hasValidTo = false;
		$receivingData = false;
		$header = true;
		$this->reply('220 '.$this->serverHello);
		$this->mail['ipaddress'] = $this->detectIP();
		while ($data = fgets($this->fd)) {
			$data = preg_replace('@\r\n@', "\n", $data);

			if (!$receivingData) {
				$this->log($data);
			}

			if (!$receivingData && preg_match('/^MAIL FROM:\s?<(.*)>/i', $data, $match)) {
				if (preg_match('/(.*)@\[.*\]/i', $match[1]) || $match[1] != '' || $this->validateEmail($match[1])) {
					$this->mail['emailSender'] = $match[1];
					$this->reply('250 2.1.0 Ok');
					$hasValidFrom = true;
				} else {
					$this->reply('551 5.1.7 Bad sender address syntax');
				}
			} elseif (!$receivingData && preg_match('/^RCPT TO:\s?<(.*)>/i', $data, $match)) {
				if (!$hasValidFrom) {
					$this->reply('503 5.5.1 Error: need MAIL command');
				} else {
					if (preg_match('/postmaster@\[.*\]/i', $match[1]) || $this->validateEmail($match[1])) {
						array_push($this->mail['emailRecipients'], $match[1]);
						$this->reply('250 2.1.5 Ok');
						$hasValidTo = true;
					} else {
						$this->reply('501 5.1.3 Bad recipient address syntax '.$match[1]);
					}
				}
			} elseif (!$receivingData && preg_match('/^RSET$/i', trim($data))) {
				$this->reply('250 2.0.0 Ok');
				$hasValidFrom = false;
				$hasValidTo = false;
			} elseif (!$receivingData && preg_match('/^NOOP$/i', trim($data))) {
				$this->reply('250 2.0.0 Ok');
			} elseif (!$receivingData && preg_match('/^VRFY (.*)/i', trim($data), $match)) {
				$this->reply('250 2.0.0 '.$match[1]);
			} elseif (!$receivingData && preg_match('/^DATA/i', trim($data))) {
				if (!$hasValidTo) {
					$this->reply('503 5.5.1 Error: need RCPT command');
				} else {
					$this->reply('354 Ok Send data ending with <CRLF>.<CRLF>');
					$receivingData = true;
				}
			} elseif (!$receivingData && preg_match('/^(HELO|EHLO)/i', $data)) {
				$this->reply('250 HELO '.$this->mail['ipaddress']);
			} elseif (!$receivingData && preg_match('/^QUIT/i', trim($data))) {
				break;
			} elseif (!$receivingData) {
				//~ $this->reply('250 Ok');
				$this->reply('502 5.5.2 Error: command not recognized');
			} elseif ($receivingData && $data == ".\n") {
				/* Email Received, now let's look at it */
				$receivingData = false;
				$this->reply('250 2.0.0 Ok: queued as '.$this->generateRandom(10));
				$splitmail = explode("\n\n", $this->mail['rawEmail'], 2);
				if (count($splitmail) == 2) {
					$this->mail['emailHeaders'] = $splitmail[0];
					$this->mail['emailBody'] = $splitmail[1];
					$headers = preg_replace("/ \s+/", ' ', preg_replace("/\n\s/", ' ', $this->mail['emailHeaders']));
					$headerlines = explode("\n", $headers);
					for ($i=0; $i<count($headerlines); $i++) {
						if (preg_match('/^Subject: (.*)/i', $headerlines[$i], $matches)) {
							$this->mail['emailSubject'] = trim($matches[1]);
						}
					}
				} else {
					$this->mail['emailBody'] = $splitmail[0];
				}
				set_time_limit(5); // Just run the exit to prevent open threads / abuse
			} elseif ($receivingData) {
				$this->mail['rawEmail'] .= $data;
			}
		}
		/* Say good bye */
		$this->reply('221 2.0.0 Bye '.$this->mail['ipaddress']);

		fclose($this->fd);
	}

	public function log($s) {
		if ($this->logFile) {
			file_put_contents($this->logFile, trim($s)."\n", FILE_APPEND);
		}
	}

	private function reply($s) {
		$this->log("REPLY:$s");
		fwrite($this->fd, $s . "\r\n");
	}

	private function detectIP() {
		$raw = explode(':', stream_socket_get_name($this->fd, true));
		return $raw[0];
	}

	private function validateEmail($email) {
		return preg_match('/^[_a-z0-9-+]+(\.[_a-z0-9-+]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/', strtolower($email));
	}

	private function generateRandom($length=8) {
		$password = '';
		$possible = '2346789BCDFGHJKLMNPQRTVWXYZ';
		$maxlength = strlen($possible);
		$i = 0;
		for ($i=0; $i < $length; $i++) {
			$char = substr($possible, mt_rand(0, $maxlength-1), 1);
			if (!strstr($password, $char)) {
				$password .= $char;
			}
		}
		return $password;
	}
}

$socket = stream_socket_server('tcp://127.0.0.1:2525', $errno, $errstr);
if (!$socket) {
	exit();
}

while ($fd = stream_socket_accept($socket)) {
	$fakeSMTP = new fakeSMTP($fd);
	$fakeSMTP->receive();
}

fclose($socket);