Project

General

Profile

KnownIssues » History » Version 27

Adrian Georgescu, 04/16/2013 12:13 PM

1 1 Adrian Georgescu
h1. Known Issues
2
3 27 Adrian Georgescu
h2. STUN is not supported
4
5
Blink does not work with come SIP service providers that require STUN for REGISTER. The reason some SIP services won't work with new SIP clients like Blink is because they rely on an obsolete broken standard in order to realize NAT traversal for their clients. More concrete, they require the use of public IP addresses in the Contact header by the end-points when they REGISTER or make outgoing SIP sessions. As most of the end-points are located behind a NAT-ted router and using a private IP address, the way to obtain a public IP address was by using a protocol named STUN, which was wrongly described in 2003 as a NAT traversal solution (this is IETF standard RFC3489). Years later in 2008, this standard has been rectified (in RFC5389) to explicitly say that it does not provide a reliable solution for the original purpose and it should not be used the way it was originally thought. Using STUN is unreliable because it depends on the way the NAT routers are implemented, which is not standardized nor can be probed and guessing the IP address and port used for outbound connections was not working deterministically. Also, it is unsecure behaviour for a server to trust an IP address expressed in a header by a client.
6
7
The new version of the STUN protocol defined in RFC 5389 explains in which context STUN may be used and advises against the use of STUN as a standalone NAT traversal utility, quote from the standard:
8
9
Experience since the publication of RFC 3489 has found that classic STUN simply does not work sufficiently well to be a deployable solution.
10
Unfortunately, the above mentioned SIP service providers have not updated their implementations to fix this issue, which implies using a simple technique that is using for replies the actual IP and port where the packets originate from rather than using the ones presented in the Contact header. Ironically, both SIP server solutions chosen by these operators do support this technique for many years now but they are simply not configured to use it.
11
12
Blink was developed in 2009. Implementing a broken standard from 2003 which was deprecated in 2008 was not considered and is not on the roadmap.
13
14
15 25 Adrian Georgescu
h2. Right click on Contacts does not work always
16
17
Affected versions: Blink Pro 2.0.0 and Blink Lite 2.0.0
18
19
Replace for Blink Pro
20
21
<pre>
22
/Applications/Blink\ Pro.app/Contents/Resources/ContactWindowController.py
23
</pre>
24
25
or for Blink Lite
26
27
<pre>
28
/Applications/Blink\ Lite.app/Contents/Resources/ContactWindowController.py
29
</pre>
30
31
with this one:
32
33
http://download.ag-projects.com/Blink/2.0.0/ContactWindowController.py
34
35 26 Adrian Georgescu
To access the application folder right click on it in finder and select Show Package Contents from the contextual menu.
36 25 Adrian Georgescu
37 24 Adrian Georgescu
h2. Sometimes incoming calls are rejected with 488
38
39
Affected versions: Blink Pro 2.0.0 and Blink Lite 2.0.0
40
41
Replace for Blink Pro
42
43
<pre>
44
/Applications/Blink\ Pro.app/Contents/Resources/lib/sipsimple/streams/rtp.py
45
</pre>
46
47
or for Blink Lite
48
49
<pre>
50
/Applications/Blink\ Lite.app/Contents/Resources/lib/sipsimple/streams/rtp.py
51
</pre>
52
53
with this one:
54
55
http://download.ag-projects.com/Blink/2.0.0/rtp.py
56
57
To access the application folder right click on it in finder and select Show Package Contents from the contextual menu.
58
59 22 Adrian Georgescu
h2. Enrollment for free sip account failure may cause crash
60 21 Adrian Georgescu
61
Affected versions: Blink Pro < 2.0 and Blink Lite < 2.0
62 19 Adrian Georgescu
63
Replace
64
65
<pre>
66
/Applications/Blink\ Pro.app/Contents/Resources/EnrollmentController.py
67
</pre>
68
69
and / or
70
71
<pre>
72
/Applications/Blink\ Lite.app/Contents/Resources/EnrollmentController.py
73
</pre>
74
75
with this one:
76
77
http://download.ag-projects.com/Blink/Pro-1.9.0/EnrollmentController.py
78
79 23 Adrian Georgescu
Then restart Blink and register the sip account that failed again.
80 17 Adrian Georgescu
81 18 Adrian Georgescu
h2. Single quote character in account display name configuration (config file gets corrupted)
82 17 Adrian Georgescu
83
Replace
84
85
<pre>
86
/Applications/Blink\ Pro.app/Contents/Resources/lib/sipsimple/configuration/backend/file.py
87
</pre>
88
 
89
with this one:
90
91
http://download.ag-projects.com/Blink/Pro-1.9.0/file.py
92
93
94 15 Adrian Georgescu
h2. Add contact fails (Blink Pro 1.9.0)
95 7 Adrian Georgescu
96 13 Adrian Georgescu
A fix is available in 1.9.1 currently in Apple review queue. You can fix this manually by replacing the following file:
97 11 Saúl Ibarra Corretgé
98
<pre>
99
/Applications/Blink Pro.app/Contents/Resources/ContactWindowController.py
100
</pre>
101
102
with this one:
103
104
http://download.ag-projects.com/Blink/Pro-1.9.0/ContactWindowController.py
105
106
To locate the file right, click in Finder on Blink Pro and click on Show Package Contents option.
107
108
Then restart Blink.
109 7 Adrian Georgescu
110 15 Adrian Georgescu
h2. Add contact fails (Blink Lite 1.7.0)
111 12 Saúl Ibarra Corretgé
112 13 Adrian Georgescu
A fix is available in 1.7.1 currently in Apple review queue. You can fix this manually by replacing the following file:
113 12 Saúl Ibarra Corretgé
114
<pre>
115
/Applications/Blink Lite.app/Contents/Resources/ContactWindowController.py
116
</pre>
117
118
with this one:
119
120
http://download.ag-projects.com/Blink/Lite-1.7.0/ContactWindowController.py
121
122
To locate the file right, click in Finder on Blink Lite and click on Show Package Contents option.
123
124
Then restart Blink.
125
126 8 Adrian Georgescu
h2. Migration panel does not vanish (Blink Pro 1.8.3)
127 1 Adrian Georgescu
128 16 Adrian Georgescu
Fixed in newer versions.
129
130 2 Adrian Georgescu
Replace the following file:
131 1 Adrian Georgescu
132 4 Adrian Georgescu
<pre>
133 1 Adrian Georgescu
/Applications/Blink Pro.app/Contents/Resources/HistoryManager.py
134 4 Adrian Georgescu
</pre>
135 1 Adrian Georgescu
136
with this one:
137
138 10 Adrian Georgescu
http://download.ag-projects.com/Blink/HistoryManager.py
139 4 Adrian Georgescu
140
To locate the file right, click in Finder on Blink Pro and click on Show Package Contents option.
141 1 Adrian Georgescu
142
Then restart Blink.