
Step 2. 用「加入其他帳號 ...」來新增帳號

Step 3. 選擇 CardDAV 帳號

Step 4. 這邊的伺服器路徑設成: /principals/users/galsync/

Step 5. 前項步驟完成後,回到「聯絡人資訊」,再從「偏好設定」進入。

Step 6. 這邊的伺服器路徑改成「/dav/galsync」

private string folding(string input) { string tempInput = input; string result = ""; const int f = 37; // 一個字一律算兩個 bytes 最長只能 75 所以 75/2 https://www.ietf.org/rfc/rfc2047.txt for (int i = 0, len = tempInput.Length; i <= len; i += f) { string x = tempInput.Substring(i, (i + f >= len ? len - i : f)); result += string.Format(@"=?UTF-8?B?{0}?=", Convert.ToBase64String(Encoding.UTF8.GetBytes(x))); } if (result.Split("?".ToCharArray()).Length == 5) result = result + "=?UTF-8?B??="; // 只切到一次還會會被解回去,所以補一個空的 return result; }