# File lib/puppet/provider/mailalias/aliases.rb, line 15
15:     def post_parse(record)
16:       # LAK:NOTE See http://snurl.com/21zf8  [groups_google_com]
17:       # It's not sufficient to assign to an existing hash.
18:       recipient = record[:recipient].split(/\s*,\s*/).collect { |d| d.gsub(/^['"]|['"]$/, '') }
19:       record[:recipient] = recipient
20:       record
21:     end