~ubuntu-branches/ubuntu/precise/dovecot/precise-security

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
require "vnd.dovecot.testsuite";

require "enotify";

test "Mailto: invalid header name" {
	if valid_notify_method 
		"mailto:stephan@example.org?header:=frop" {
		test_fail "invalid uri accepted";
	}
}

test "Mailto: invalid recipient" {
	if valid_notify_method 
		"mailto:stephan%23example.org" {
		test_fail "invalid uri accepted";
	}
}

test "Mailto: invalid to header recipient" {
	if valid_notify_method
		"mailto:stephan@example.org?to=nico%23frop.example.org" {
		test_fail "invalid uri accepted";
	}
}

test "Mailto: valid URI" {
	if not valid_notify_method
		"mailto:stephan@example.org" {
		test_fail "valid uri denied";
	}
}